applyTo abstract method

void applyTo(
  1. CommonPreparedStatement statement,
  2. int index
)

Applies this custom parameter to the statement at the variable index index.

On native platforms, an implementation can safely cast the statement to a PreparedStatement (from package:sqlite3/sqlite3.dart) and use the PreparedStatement.handle to call sqlite3_bind_* manually.

Implementation

void applyTo(CommonPreparedStatement statement, int index);