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

Function execute

packages/core/src/database/sqlite.node.ts:90–92  ·  view source on GitHub ↗
(query, params, transformRows)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

runFunction · 0.70

Tested by

no test coverage detected