bindText method

void bindText(
  1. int index,
  2. String value
)

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

Implementation

void bindText(int index, String value) {
  handleBindRc(rawStatement.sqlite3_bind_text(index, value));
}