bindBigInt method

void bindBigInt(
  1. int index,
  2. BigInt value
)

Calls sqlite3_bind_int64 with the 1-based index and the target value.

The value must fit in a signed 64-bit integer.

Implementation

void bindBigInt(int index, BigInt value) {
  handleBindRc(rawStatement.sqlite3_bind_int64BigInt(index, value));
}