MCPcopy Create free account
hub / github.com/temporalio/temporal / Exec

Method Exec

common/persistence/sql/sqlplugin/sqlite/admin.go:65–68  ·  view source on GitHub ↗

Exec executes a sql statement

(stmt string, args ...any)

Source from the content-addressed store, hash-verified

63
64// Exec executes a sql statement
65func (mdb *db) Exec(stmt string, args ...any) error {
66 _, err := mdb.db.Exec(stmt, args...)
67 return err
68}
69
70// ListTables returns a list of tables in this database
71func (mdb *db) ListTables(database string) ([]string, error) {

Callers 4

UpdateSchemaVersionMethod · 0.95
WriteSchemaUpdateLogMethod · 0.95
DropTableMethod · 0.95

Calls 1

ExecMethod · 0.65

Tested by

no test coverage detected