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

Method unprepared

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

Source from the content-addressed store, hash-verified

170 }
171
172 get unprepared(): Effect.Effect<ReadonlyArray<A>, Error.SqlError> {
173 return this.withConnection(
174 "executeUnprepared",
175 (connection, sql, params) => connection.executeUnprepared(sql, params, this.transformRows)
176 )
177 }
178
179 compile(withoutTransform?: boolean | undefined) {
180 return this.compiler.compile(this, withoutTransform ?? false)

Callers

nothing calls this directly

Calls 2

withConnectionMethod · 0.95
executeUnpreparedMethod · 0.45

Tested by

no test coverage detected