MCPcopy Create free account
hub / github.com/outerbase/studio / transaction

Method transaction

src/drivers/sqlite-base-driver.ts:49–51  ·  view source on GitHub ↗
(stmts: string[])

Source from the content-addressed store, hash-verified

47 }
48
49 transaction(stmts: string[]): Promise<DatabaseResultSet[]> {
50 return this._db.transaction(stmts);
51 }
52
53 batch(stmts: string[]): Promise<DatabaseResultSet[]> {
54 return this._db.batch ? this._db.batch(stmts) : super.batch(stmts);

Callers 1

schemasMethod · 0.95

Calls 1

transactionMethod · 0.65

Tested by

no test coverage detected