MCPcopy
hub / github.com/Effect-TS/effect / execute

Function execute

packages/sql-sqlite-wasm/src/SqliteClient.ts:173–177  ·  view source on GitHub ↗
(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

Calls 2

runFunction · 0.70
mapMethod · 0.65

Tested by

no test coverage detected