keyword_count method

int keyword_count()
inherited

Implementation

int keyword_count() {
  if (libVersionNumber < 3024000) {
    throw dbsql.DatabaseException('API sqlite3_keyword_count is not available before 3.24.0');
  }
  return _h_sqlite3_keyword_count!();
}