()
| 170 | } |
| 171 | |
| 172 | get unprepared(): Effect.Effect<ReadonlyArray<A>, Error.SqlError> { |
| 173 | return this.withConnection( |
| 174 | "executeUnprepared", |
| 175 | (connection, sql, params) => connection.executeUnprepared(sql, params, this.transformRows) |
| 176 | ) |
| 177 | } |
| 178 | |
| 179 | compile(withoutTransform?: boolean | undefined) { |
| 180 | return this.compiler.compile(this, withoutTransform ?? false) |
nothing calls this directly
no test coverage detected