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

Function batch

src/drivers/common-sql-imp.ts:31–39  ·  view source on GitHub ↗
(stmts: string[])

Source from the content-addressed store, hash-verified

29 }
30
31 async batch(stmts: string[]): Promise<DatabaseResultSet[]> {
32 const result: DatabaseResultSet[] = [];
33
34 for (const stmt of stmts) {
35 result.push(await this.query(stmt));
36 }
37
38 return result;
39 }
40
41 getCollationList(): string[] {
42 return [];

Callers

nothing calls this directly

Calls 1

queryMethod · 0.65

Tested by

no test coverage detected