NitroSQLite
React native nitro sqliteType aliases

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

Type Alias: ExecutePreparedStatement

TypeScript

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

SQLiteQueryParams

Values bound to the statement's positional placeholders.

Returns

QueryResult<Row>