(stmts: string[])
| 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); |
nothing calls this directly
no test coverage detected