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

Function unprepared

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

Source from the content-addressed store, hash-verified

1355 },
1356
1357 get unprepared(): Effect.Effect<ReadonlyArray<any>, SqlError> {
1358 const self = this as StatementImpl<any>
1359 return self.withConnection(
1360 "executeUnprepared",
1361 (connection, sql, params) => connection.executeUnprepared(sql, params, self.transformRows)
1362 )
1363 },
1364
1365 ...Effectable.Prototype<StatementImpl<any>>({
1366 label: "Statement",

Callers

nothing calls this directly

Calls 2

withConnectionMethod · 0.80
executeUnpreparedMethod · 0.45

Tested by

no test coverage detected