value_subtype method

int value_subtype(
  1. PtrValue arg1
)
inherited

Implementation

int value_subtype(PtrValue arg1) {
  if (libVersionNumber < 3009000) {
    throw dbsql.DatabaseException('API sqlite3_value_subtype is not available before 3.9.0');
  }
  return _h_sqlite3_value_subtype!(arg1);
}