()
| 1313 | }, |
| 1314 | |
| 1315 | get raw(): Effect.Effect<unknown, SqlError> { |
| 1316 | return this.withConnection( |
| 1317 | "executeRaw", |
| 1318 | (connection, sql, params) => connection.executeRaw(sql, params), |
| 1319 | true |
| 1320 | ) |
| 1321 | }, |
| 1322 | |
| 1323 | get stream(): Stream.Stream<any, SqlError> { |
| 1324 | const self = this as StatementImpl<any> |
nothing calls this directly
no test coverage detected