Searched refs:sqlite3_db_config (Results 1 - 4 of 4) sorted by relevance
/third_party/sqlite/include/ |
H A D | sqlite3ext.h | 566 #define sqlite3_db_config sqlite3_api->db_config macro
|
H A D | sqlite3.h | 1682 ** The sqlite3_db_config() interface is used to make configuration 1687 ** The second argument to sqlite3_db_config(D,V,...) is the 1692 ** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if 1695 SQLITE_API int sqlite3_db_config(sqlite3*, int op, ...); 1959 ** option to [sqlite3_db_config()] can be used to change the lookaside 2159 ** can be passed as the second argument to the [sqlite3_db_config()] interface. 2163 ** should check the return code from [sqlite3_db_config()] to make sure that 2164 ** the call worked. ^The [sqlite3_db_config()] interface will return a 2173 ** ^The first argument (the third parameter to [sqlite3_db_config()] is a 2332 ** <li> sqlite3_db_config(d [all...] |
/third_party/sqlite/src/ |
H A D | shell.c | 11201 sqlite3_db_config(pNew->dbm, SQLITE_DBCONFIG_TRIGGER_EQP, 1, (int*)0); in sqlite3_expert_new() 17567 sqlite3_db_config(p->db, SQLITE_DBCONFIG_DEFENSIVE, -1, &defensiveMode); in bind_table_init() 17568 sqlite3_db_config(p->db, SQLITE_DBCONFIG_DEFENSIVE, 0, 0); in bind_table_init() 17569 sqlite3_db_config(p->db, SQLITE_DBCONFIG_WRITABLE_SCHEMA, -1, &wrSchema); in bind_table_init() 17570 sqlite3_db_config(p->db, SQLITE_DBCONFIG_WRITABLE_SCHEMA, 1, 0); in bind_table_init() 17577 sqlite3_db_config(p->db, SQLITE_DBCONFIG_WRITABLE_SCHEMA, wrSchema, 0); in bind_table_init() 17578 sqlite3_db_config(p->db, SQLITE_DBCONFIG_DEFENSIVE, defensiveMode, 0); in bind_table_init() 18327 sqlite3_db_config(db, SQLITE_DBCONFIG_TRIGGER_EQP, -1, &triggerEQP); in shell_exec() 18329 sqlite3_db_config(db, SQLITE_DBCONFIG_TRIGGER_EQP, 1, 0); in shell_exec() 18362 sqlite3_db_config(d in shell_exec() [all...] |
H A D | sqlite3.c | 1992 ** The sqlite3_db_config() interface is used to make configuration 1997 ** The second argument to sqlite3_db_config(D,V,...) is the 2002 ** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if 2005 SQLITE_API int sqlite3_db_config(sqlite3*, int op, ...); 2269 ** option to [sqlite3_db_config()] can be used to change the lookaside 2469 ** can be passed as the second argument to the [sqlite3_db_config()] interface. 2473 ** should check the return code from [sqlite3_db_config()] to make sure that 2474 ** the call worked. ^The [sqlite3_db_config()] interface will return a 2483 ** ^The first argument (the third parameter to [sqlite3_db_config()] is a 2642 ** <li> sqlite3_db_config(d 132489 #define sqlite3_db_config global() macro 174322 SQLITE_API int sqlite3_db_config(sqlite3 *db, int op, ...){ global() function [all...] |
Completed in 136 milliseconds