()
| 1355 | }, |
| 1356 | |
| 1357 | get unprepared(): Effect.Effect<ReadonlyArray<any>, SqlError> { |
| 1358 | const self = this as StatementImpl<any> |
| 1359 | return self.withConnection( |
| 1360 | "executeUnprepared", |
| 1361 | (connection, sql, params) => connection.executeUnprepared(sql, params, self.transformRows) |
| 1362 | ) |
| 1363 | }, |
| 1364 | |
| 1365 | ...Effectable.Prototype<StatementImpl<any>>({ |
| 1366 | label: "Statement", |
nothing calls this directly
no test coverage detected