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

Function run

packages/sql-sqlite-node/src/SqliteClient.ts:142–150  ·  view source on GitHub ↗
(
        sql: string,
        params: ReadonlyArray<unknown>,
        raw = false
      )

Source from the content-addressed store, hash-verified

140 })
141
142 const run = (
143 sql: string,
144 params: ReadonlyArray<unknown>,
145 raw = false
146 ) =>
147 Effect.flatMap(
148 prepareCache.get(sql),
149 (s) => runStatement(s, params, raw)
150 )
151
152 const runValues = (
153 sql: string,

Callers 3

layerFunction · 0.70
executeFunction · 0.70
executeRawFunction · 0.70

Calls 2

runStatementFunction · 0.70
getMethod · 0.65

Tested by

no test coverage detected