Function
execute
(sql, params, transformRows)
Source from the content-addressed store, hash-verified
| 198 | }) |
| 199 | |
| 200 | return identity<SqliteConnection>({ |
| 201 | execute(sql, params, transformRows) { |
| 202 | return transformRows |
| 203 | ? Effect.map(run(sql, params), transformRows) |
| 204 | : run(sql, params) |
| 205 | }, |
| 206 | executeRaw(sql, params) { |
| 207 | return run(sql, params) |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…