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