MCPcopy
hub / github.com/Effect-TS/effect / raw

Method raw

packages/sql/src/internal/statement.ts:141–147  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

139 }
140
141 get raw(): Effect.Effect<unknown, Error.SqlError> {
142 return this.withConnection(
143 "executeRaw",
144 (connection, sql, params) => connection.executeRaw(sql, params),
145 true
146 )
147 }
148
149 get stream(): Stream.Stream<A, Error.SqlError> {
150 return Stream.unwrapScoped(Effect.flatMap(

Callers 9

runIteratorFunction · 0.80
runValuesFunction · 0.80
fileResponseFunction · 0.80
fileWebResponseFunction · 0.80
rawFunction · 0.80
fileResponseFunction · 0.80
fileWebResponseFunction · 0.80
runValuesFunction · 0.80
runValuesFunction · 0.80

Calls 2

withConnectionMethod · 0.95
executeRawMethod · 0.45

Tested by

no test coverage detected