TLSyncSqliteStatement
A prepared statement that can be executed multiple times with different bindings.
interface TLSyncSqliteStatement<
TResult extends TLSqliteRow | void,
TParams extends TLSqliteInputValue[] = [],
> {}Methods
all
Execute the statement and return all results as an array
Parameters
| Name | Description |
|---|---|
| |
Returns
TResult[];iterate
Execute the statement and iterate over results one at a time
Parameters
| Name | Description |
|---|---|
| |
Returns
IterableIterator<TResult>;run
Execute the statement without returning results (for DML)
Parameters
| Name | Description |
|---|---|
| |
Returns
void;Prev
TLSyncLogNext
TLSyncSqliteWrapper