React native nitro sqliteType aliases
API Reference / react-native-nitro-sqlite / ExecutePreparedStatement
Type Alias: ExecutePreparedStatement
TypeScriptSource files: TypeScript
ExecutePreparedStatement = <
Row>(params?) =>QueryResult<Row>
Execute a prepared statement with optional positional values and return typed rows. Each call replaces the previous parameter bindings.
Type Parameters
Row
Row extends QueryResultRow = QueryResultRow
Parameters
params?
Values bound to the statement's positional placeholders.
Returns
QueryResult<Row>