hard_heap_limit64 method

int hard_heap_limit64(
  1. int N
)
inherited

Implementation

int hard_heap_limit64(int N) {
  if (libVersionNumber < 3031000) {
    throw dbsql.DatabaseException('API sqlite3_hard_heap_limit64 is not available before 3.31.0');
  }
  return _h_sqlite3_hard_heap_limit64!(N);
}