WasmRawPreparedStatement extension Web only

Web-specific extensions for RawPreparedStatement, which allows binding and reading big integers directly from JavaScript.

on

Methods

bindBigInt(int index, BigInt value) → void

Available on RawPreparedStatement, provided by the WasmRawPreparedStatement extension

Calls sqlite3_bind_int64 with the 1-based index and the target value.
bindJSBigInt(int index, JSBigInt value) → void

Available on RawPreparedStatement, provided by the WasmRawPreparedStatement extension

Calls sqlite3_bind_int64 with the 1-based index and the target value.
columnJSBigInt(int index) JSBigInt

Available on RawPreparedStatement, provided by the WasmRawPreparedStatement extension

Calls sqlite3_column_int64 with the given index.