Function
execute
(sql, params, transformRows)
Source from the content-addressed store, hash-verified
| 128 | |
| 129 | return identity<SqliteConnection>({ |
| 130 | execute(sql, params, transformRows) { |
| 131 | return transformRows |
| 132 | ? Effect.map(run(sql, params), transformRows) |
| 133 | : run(sql, params) |
| 134 | }, |
| 135 | executeRaw(sql, params) { |
| 136 | return run(sql, params) |
| 137 | }, |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…