Function
execute
(sql, params, transformRows)
Source from the content-addressed store, hash-verified
| 269 | |
| 270 | const connection = identity<MssqlConnection>({ |
| 271 | execute(sql, params, transformRows) { |
| 272 | return transformRows |
| 273 | ? Effect.map(run(sql, params), transformRows) |
| 274 | : run(sql, params) |
| 275 | }, |
| 276 | executeRaw(sql, params) { |
| 277 | return run(sql, params) |
| 278 | }, |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…