React native nitro sqliteType aliases
API Reference / react-native-nitro-sqlite / ExecutePreparedStatementAsync
Type Alias: ExecutePreparedStatementAsync
TypeScriptSource files: TypeScript
ExecutePreparedStatementAsync = <
Row>(params?) =>Promise<QueryResult<Row>>
Queue a prepared statement execution and resolve with typed rows. Calls on the same managed connection run in queue order.
Type Parameters
Row
Row extends QueryResultRow = QueryResultRow
Parameters
params?
Values bound to the statement's positional placeholders.
Returns
Promise<QueryResult<Row>>