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

Function execute

packages/sql-sqlite-react-native/src/SqliteClient.ts:130–134  ·  view source on GitHub ↗
(sql, params, transformRows)

Source from the content-addressed store, hash-verified

128
129 return identity<SqliteConnection>({
130 execute(sql, params, transformRows) {
131 return transformRows
132 ? Effect.map(run(sql, params), transformRows)
133 : run(sql, params)
134 },
135 executeRaw(sql, params) {
136 return run(sql, params)
137 },

Callers

nothing calls this directly

Calls 2

runFunction · 0.70
mapMethod · 0.65

Tested by

no test coverage detected