(stmt: string)
| 280 | |
| 281 | export interface QueryableBaseDriver { |
| 282 | query(stmt: string): Promise<DatabaseResultSet>; |
| 283 | transaction(stmts: string[]): Promise<DatabaseResultSet[]>; |
| 284 | |
| 285 | // This is optional. We can always fallback to multiple query |
no outgoing calls
no test coverage detected