Searched refs:sqlite3_limit (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Modules/_sqlite/ |
H A D | statement.c | 43 int max_length = sqlite3_limit(db, SQLITE_LIMIT_SQL_LENGTH, -1); in pysqlite_statement_create()
|
H A D | cursor.c | 1045 int max_length = sqlite3_limit(self->connection->db, in pysqlite_cursor_executescript_impl()
|
H A D | connection.c | 2288 int old_limit = sqlite3_limit(self->db, category, limit); in setlimit_impl()
|
/third_party/sqlite/include/ |
H A D | sqlite3ext.h | 554 #define sqlite3_limit sqlite3_api->limit macro
|
H A D | sqlite3.h | 3123 ** might also consider lowering resource limits using [sqlite3_limit()] 3972 ** [sqlite3_limit()] interface returns the prior value of the limit. 3991 SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal); 3998 ** that can be lowered at run-time using [sqlite3_limit()]. 4467 ** ^The NNN value must be between 1 and the [sqlite3_limit()] 4565 ** exceeds limits imposed by [sqlite3_limit]([SQLITE_LIMIT_LENGTH]) or 5241 ** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]). If the third 8218 ** the value set for [sqlite3_limit](D,[SQLITE_LIMIT_LENGTH]) instead
|
/third_party/sqlite/src/ |
H A D | shell.c | 4783 mxBlob = sqlite3_limit(db, SQLITE_LIMIT_LENGTH, -1); in readFileContents() 23225 sqlite3_limit(p->db, aLimit[i].limitCode, -1)); in do_meta_command() 23253 sqlite3_limit(p->db, aLimit[iLimit].limitCode, in do_meta_command() 23257 sqlite3_limit(p->db, aLimit[iLimit].limitCode, -1)); in do_meta_command()
|
H A D | sqlite3.c | 3436 ** might also consider lowering resource limits using [sqlite3_limit()] 4278 ** [sqlite3_limit()] interface returns the prior value of the limit. 4297 SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal); 4304 ** that can be lowered at run-time using [sqlite3_limit()]. 4773 ** ^The NNN value must be between 1 and the [sqlite3_limit()] 4871 ** exceeds limits imposed by [sqlite3_limit]([SQLITE_LIMIT_LENGTH]) or 5550 ** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]). If the third 8527 ** the value set for [sqlite3_limit](D,[SQLITE_LIMIT_LENGTH]) instead 16852 ** using the sqlite3_limit() interface. 132477 #define sqlite3_limit global() macro 176265 SQLITE_API int sqlite3_limit(sqlite3 *db, int limitId, int newLimit){ global() function [all...] |
Completed in 193 milliseconds