MCPcopy Create free account
hub / github.com/effect-app/libs / loadExtension

Function loadExtension

repos/effect/packages/sql/sqlite-node/src/SqliteClient.ts:253–259  ·  view source on GitHub ↗
(path)

Source from the content-addressed store, hash-verified

251 ) => Effect.flatMap(prepare(sql), (statement) => runStatementValuesUnprepared(statement, params))
252
253 return identity<SqliteConnection>({
254 execute(sql, params, transformRows) {
255 return transformRows
256 ? Effect.map(run(sql, params), transformRows)
257 : run(sql, params)
258 },
259 executeRaw(sql, params) {
260 return run(sql, params, true)
261 },
262 executeValues(sql, params) {

Callers

nothing calls this directly

Calls 1

classifyErrorFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…