Searched refs:sqlite3_limit (Results 1 – 4 of 4) sorted by relevance
| /freebsd-src/contrib/sqlite3/ |
| H A D | sqlite3ext.h | 555 #define sqlite3_limit sqlite3_api->limit macro
|
| H A D | sqlite3.h | 3206 ** might also consider lowering resource limits using [sqlite3_limit()] 4065 ** [sqlite3_limit()] interface returns the prior value of the limit. 4084 SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal); 4091 ** that can be lowered at run-time using [sqlite3_limit()]. 4595 ** ^The NNN value must be between 1 and the [sqlite3_limit()] 4693 ** exceeds limits imposed by [sqlite3_limit]([SQLITE_LIMIT_LENGTH]) or 5382 ** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]). If the third 8446 ** the value set for [sqlite3_limit](D,[SQLITE_LIMIT_LENGTH]) instead
|
| H A D | shell.c | 4753 int nvMax = sqlite3_limit(sqlite3_context_db_handle(context), in fromBase64() 5129 int nvMax = sqlite3_limit(sqlite3_context_db_handle(context), 7306 mxBlob = sqlite3_limit(db, SQLITE_LIMIT_LENGTH, -1); in readFileContents() 27373 sqlite3_limit(p->db, aLimit[i].limitCode, -1)); in do_meta_command() 27401 sqlite3_limit(p->db, aLimit[iLimit].limitCode, in do_meta_command() 27405 sqlite3_limit(p->db, aLimit[iLimit].limitCode, -1)); in do_meta_command()
|
| H A D | sqlite3.c | 3519 ** might also consider lowering resource limits using [sqlite3_limit()] 4378 ** [sqlite3_limit()] interface returns the prior value of the limit. 4397 SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal); 4404 ** that can be lowered at run-time using [sqlite3_limit()]. 4908 ** ^The NNN value must be between 1 and the [sqlite3_limit()] 5006 ** exceeds limits imposed by [sqlite3_limit]([SQLITE_LIMIT_LENGTH]) or 5695 ** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]). If the third 8759 ** the value set for [sqlite3_limit](D,[SQLITE_LIMIT_LENGTH]) instead 17478 ** using the sqlite3_limit() interface. [all...] |