limit method
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);
}