result_subtype method

void result_subtype(
  1. PtrContext arg1,
  2. int arg2
)
inherited

Implementation

void result_subtype(PtrContext arg1, int arg2) {
  if (libVersionNumber < 3009000) {
    throw dbsql.DatabaseException('API sqlite3_result_subtype is not available before 3.9.0');
  }
  return _h_sqlite3_result_subtype!(arg1, arg2);
}