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

Method executeRaw

packages/sql-libsql/src/LibsqlClient.ts:187–189  ·  view source on GitHub ↗
(sql: string, params: ReadonlyArray<unknown>)

Source from the content-addressed store, hash-verified

185 : this.run(sql, params)
186 }
187 executeRaw(sql: string, params: ReadonlyArray<unknown>) {
188 return this.runRaw(sql, params)
189 }
190 executeValues(sql: string, params: ReadonlyArray<unknown>) {
191 return Effect.map(this.run(sql, params), (rows) => rows.map((row) => Array.from(row) as Array<any>))
192 }

Callers 1

makeFunction · 0.45

Calls 1

runRawMethod · 0.95

Tested by

no test coverage detected