soft_heap_limit64 method

int soft_heap_limit64(
  1. int N
)
inherited

Implementation

int soft_heap_limit64(int N) {
  if (libVersionNumber < 3007003) {
    throw dbsql.DatabaseException('API sqlite3_soft_heap_limit64 is not available before 3.7.3');
  }
  return _h_sqlite3_soft_heap_limit64!(N);
}