Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_db_config

2056 ** The sqlite3_db_config() interface is used to make configuration
2061 ** The second argument to sqlite3_db_config(D,V,...) is the
2066 ** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if
2069 SQLITE_API int sqlite3_db_config(sqlite3*, int op, ...);
2350 ** The [SQLITE_DBCONFIG_LOOKASIDE] option to [sqlite3_db_config()] can
2570 ** can be passed as the second parameter to the [sqlite3_db_config()] interface.
2572 ** The [sqlite3_db_config()] interface is a var-args function. It takes a
2574 ** parameters passed into sqlite3_db_config() depends on which of these
2578 ** configuration option" or "the (N+2)-th parameter to sqlite3_db_config()".
2582 ** should check the return code from [sqlite3_db_config()] to make sure that
2583 ** the call worked. ^The [sqlite3_db_config()] interface will return a
2596 ** so that a call to [sqlite3_db_config()] that uses SQLITE_DBCONFIG_LOOKASIDE
2723 ** [sqlite3_db_config()] call has a total of three parameters. The
2740 ** operation (the third parameter to [sqlite3_db_config()]) is an integer
2788 ** <li> sqlite3_db_config(db, SQLITE_DBCONFIG_RESET_DATABASE, 1, 0);
2790 ** <li> sqlite3_db_config(db, SQLITE_DBCONFIG_RESET_DATABASE, 0, 0);
3001 ** overall call to [sqlite3_db_config()] has a total of four parameters.
3002 ** The first argument (the third parameter to sqlite3_db_config()) is
7876 ** [sqlite3_db_config](db,[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION],1,NULL)
7912 ** ^(Use [sqlite3_db_config](db,[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION],..)
24059 ** sqlite3_db_config(db, SQLITE_DBCONFIG_LOOKASIDE);
142797 #define sqlite3_db_config sqlite3_api->db_config
143301 sqlite3_db_config,
143536 ** sqlite3_db_config(db, SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION, 1, 0)
188052 SQLITE_API int sqlite3_db_config(sqlite3 *db, int op, ...){
202796 ** has been activated via a prior call to sqlite3_db_config(db,
202802 sqlite3_db_config(db,SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER,-1,&isEnabled);