MCPcopy Index your code
hub / github.com/Effect-TS/effect / execute

Function execute

packages/sql-sqlite-node/src/SqliteClient.ts:176–180  ·  view source on GitHub ↗
(sql, params, transformRows)

Source from the content-addressed store, hash-verified

174
175 return identity<SqliteConnection>({
176 execute(sql, params, transformRows) {
177 return transformRows
178 ? Effect.map(run(sql, params), transformRows)
179 : run(sql, params)
180 },
181 executeRaw(sql, params) {
182 return run(sql, params, true)
183 },

Callers

nothing calls this directly

Calls 2

runFunction · 0.70
mapMethod · 0.65

Tested by

no test coverage detected