bindInt64 method

void bindInt64(
  1. int index,
  2. int value
)

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

Implementation

void bindInt64(int index, int value) {
  handleBindRc(rawStatement.sqlite3_bind_int64(index, value));
}