Function
execute
(sql, params, transformRows)
Source from the content-addressed store, hash-verified
| 171 | |
| 172 | return identity<SqliteConnection>({ |
| 173 | execute(sql, params, transformRows) { |
| 174 | return transformRows |
| 175 | ? Effect.map(run(sql, params), transformRows) |
| 176 | : run(sql, params) |
| 177 | }, |
| 178 | executeRaw(sql, params) { |
| 179 | return run(sql, params) |
| 180 | }, |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…