Lines Matching refs:sqlite3_db_config
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(db, SQLITE_DBCONFIG_RESET_DATABASE, 1, 0);
2644 ** <li> sqlite3_db_config(db, SQLITE_DBCONFIG_RESET_DATABASE, 0, 0);
7255 ** [sqlite3_db_config](db,[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION],1,NULL)
7291 ** ^(Use [sqlite3_db_config](db,[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION],..)
22203 ** sqlite3_db_config(db, SQLITE_DBCONFIG_LOOKASIDE);
132489 #define sqlite3_db_config sqlite3_api->db_config
132981 sqlite3_db_config,
133204 ** sqlite3_db_config(db, SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION, 1, 0)
174322 SQLITE_API int sqlite3_db_config(sqlite3 *db, int op, ...){
188700 ** has been activated via a prior call to sqlite3_db_config(db,
188706 sqlite3_db_config(db,SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER,-1,&isEnabled);