(params: SqlQuery)
| 106 | } |
| 107 | |
| 108 | async queryRaw(params: SqlQuery): Promise<SqlResultSet> { |
| 109 | return executeQueryRaw(this.#client, params) |
| 110 | } |
| 111 | |
| 112 | async startTransaction(isolationLevel?: IsolationLevel): Promise<Transaction> { |
| 113 | const session = await this.#client.newSession() |
nothing calls this directly
no test coverage detected