(path)
| 251 | ) => Effect.flatMap(prepare(sql), (statement) => runStatementValuesUnprepared(statement, params)) |
| 252 | |
| 253 | return identity<SqliteConnection>({ |
| 254 | execute(sql, params, transformRows) { |
| 255 | return transformRows |
| 256 | ? Effect.map(run(sql, params), transformRows) |
| 257 | : run(sql, params) |
| 258 | }, |
| 259 | executeRaw(sql, params) { |
| 260 | return run(sql, params, true) |
| 261 | }, |
| 262 | executeValues(sql, params) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…