MCPcopy Create free account
hub / github.com/Effect-TS/effect / raw

Function raw

packages/effect/src/unstable/sql/Statement.ts:1315–1321  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1313 },
1314
1315 get raw(): Effect.Effect<unknown, SqlError> {
1316 return this.withConnection(
1317 "executeRaw",
1318 (connection, sql, params) => connection.executeRaw(sql, params),
1319 true
1320 )
1321 },
1322
1323 get stream(): Stream.Stream<any, SqlError> {
1324 const self = this as StatementImpl<any>

Callers

nothing calls this directly

Calls 2

withConnectionMethod · 0.80
executeRawMethod · 0.45

Tested by

no test coverage detected