MCPcopy Create free account
hub / github.com/Effect-TS/effect / execute

Function execute

packages/sql/sqlite-wasm/src/SqliteClient.ts:201–205  ·  view source on GitHub ↗
(sql, params, transformRows)

Source from the content-addressed store, hash-verified

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)
208 },

Callers

nothing calls this directly

Calls 2

runFunction · 0.70
mapMethod · 0.45

Tested by

no test coverage detected