shutdown method

int shutdown()
inherited

Implementation

int shutdown() {
  if (libVersionNumber < 3006000) {
    throw dbsql.DatabaseException('API sqlite3_shutdown is not available before 3.6.0 beta');
  }
  return _h_sqlite3_shutdown!();
}