value_frombind method

int value_frombind(
  1. PtrValue arg1
)
inherited

Implementation

int value_frombind(PtrValue arg1) {
  if (libVersionNumber < 3028000) {
    throw dbsql.DatabaseException('API sqlite3_value_frombind is not available before 3.28.0');
  }
  return _h_sqlite3_value_frombind!(arg1);
}