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

Method executeUnprepared

packages/sql/pg/src/PgClient.ts:733–739  ·  view source on GitHub ↗
(
    sql: string,
    params: ReadonlyArray<unknown>,
    transformRows: (<A extends object>(row: ReadonlyArray<A>) => ReadonlyArray<A>) | undefined
  )

Source from the content-addressed store, hash-verified

731 return this.executeValues(sql, params)
732 }
733 executeUnprepared(
734 sql: string,
735 params: ReadonlyArray<unknown>,
736 transformRows: (<A extends object>(row: ReadonlyArray<A>) => ReadonlyArray<A>) | undefined
737 ) {
738 return this.execute(sql, params, transformRows)
739 }
740 executeStream(
741 sql: string,
742 params: ReadonlyArray<unknown>,

Callers 6

wrapConnectionFunction · 0.45
wrapConnectionFunction · 0.45
unpreparedFunction · 0.45
SqlClient.tsFile · 0.45

Calls 1

executeMethod · 0.95

Tested by 1

wrapConnectionFunction · 0.36