MCPcopy Create free account
hub / github.com/anomalyco/opencode / execute

Function execute

packages/core/src/database/sqlite.bun.ts:89–91  ·  view source on GitHub ↗
(query, params, transformRows)

Source from the content-addressed store, hash-verified

87
88 const connection = identity<SqliteConnection>({
89 execute(query, params, transformRows) {
90 return transformRows ? Effect.map(run(query, params), transformRows) : run(query, params)
91 },
92 executeRaw(query, params) {
93 return run(query, params)
94 },

Callers

nothing calls this directly

Calls 1

runFunction · 0.70

Tested by

no test coverage detected