WasmRawPreparedStatement extension Web only
Web-specific extensions for RawPreparedStatement, which allows binding and reading big integers directly from JavaScript.
Methods
-
bindBigInt(
int index, BigInt value) → void -
Available on RawPreparedStatement, provided by the WasmRawPreparedStatement extension
Callssqlite3_bind_int64with the 1-based index and the target value. -
bindJSBigInt(
int index, JSBigInt value) → void -
Available on RawPreparedStatement, provided by the WasmRawPreparedStatement extension
Callssqlite3_bind_int64with the 1-based index and the target value. -
columnJSBigInt(
int index) → JSBigInt -
Available on RawPreparedStatement, provided by the WasmRawPreparedStatement extension
Callssqlite3_column_int64with the given index.