bindDouble function

int bindDouble(
  1. Statement stmt,
  2. double? value,
  3. int index
)

Bind a Statement stmt with a double value at the given index.

Implementation

int bindDouble(Statement stmt, double? value, int index) {
  if (value == null) return bindNull(stmt, index);
  return Driver.binder.bind_double(stmt._stmt!, index, value);
}