limit method

int limit(
  1. PtrSqlite3 arg1,
  2. int id,
  3. int newVal
)
inherited

Implementation

int limit(PtrSqlite3 arg1, int id, int newVal) {
  if (libVersionNumber < 3005008) {
    throw dbsql.DatabaseException('API sqlite3_limit is not available before 3.5.8');
  }
  return _h_sqlite3_limit!(arg1, id, newVal);
}