NitroSQLite
React native nitro sqliteType aliases

API Reference / react-native-nitro-sqlite / ExecutePreparedStatementAsync

Type Alias: ExecutePreparedStatementAsync

TypeScript

Source 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?

SQLiteQueryParams

Values bound to the statement's positional placeholders.

Returns

Promise<QueryResult<Row>>