Method
executeUnprepared
(
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>, |