()
| 1349 | SqlError |
| 1350 | > { |
| 1351 | return this.withConnection( |
| 1352 | "executeValuesUnprepared", |
| 1353 | (connection, sql, params) => connection.executeValuesUnprepared(sql, params) |
| 1354 | ) |
| 1355 | }, |
| 1356 | |
| 1357 | get unprepared(): Effect.Effect<ReadonlyArray<any>, SqlError> { |
| 1358 | const self = this as StatementImpl<any> |
| 1359 | return self.withConnection( |
nothing calls this directly
no test coverage detected
searching dependent graphs…