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

Method transaction

src/drivers/postgres/postgres-driver.ts:73–75  ·  view source on GitHub ↗
(stmts: string[])

Source from the content-addressed store, hash-verified

71 }
72
73 transaction(stmts: string[]): Promise<DatabaseResultSet[]> {
74 return this._db.transaction(stmts);
75 }
76
77 batch(stmts: string[]): Promise<DatabaseResultSet[]> {
78 return this._db.batch ? this._db.batch(stmts) : super.batch(stmts);

Callers

nothing calls this directly

Calls 1

transactionMethod · 0.65

Tested by

no test coverage detected