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

Function executeUnprepared

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

Source from the content-addressed store, hash-verified

133 return runValues(sql, params)
134 },
135 executeUnprepared(sql, params, transformRows) {
136 return transformRows
137 ? Effect.map(runStatement(sql, params), transformRows)
138 : runStatement(sql, params)
139 },
140 executeStream(sql, params, transformRows) {
141 return Stream.suspend(() => {
142 const iterator = runIterator(sql, params)

Callers

nothing calls this directly

Calls 2

runStatementFunction · 0.70
mapMethod · 0.65

Tested by

no test coverage detected