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

Function execute

packages/sql-sqlite-do/src/SqliteClient.ts:124–128  ·  view source on GitHub ↗
(sql, params, transformRows)

Source from the content-addressed store, hash-verified

122
123 return identity<Connection>({
124 execute(sql, params, transformRows) {
125 return transformRows
126 ? Effect.map(runStatement(sql, params), transformRows)
127 : runStatement(sql, params)
128 },
129 executeRaw(sql, params) {
130 return runStatement(sql, params)
131 },

Callers

nothing calls this directly

Calls 2

runStatementFunction · 0.70
mapMethod · 0.65

Tested by

no test coverage detected