(stmts: string[])
| 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 []; |