HomeSort by: relevance | last modified time | path
    Searched refs:sqlite3_db_config (Results 1 - 7 of 7) sorted by relevancy

  /src/external/public-domain/sqlite/man/
Makefile 103 sqlite3_db_config.3 \
  /src/usr.sbin/makemandb/
apropos-utils.c 94 sqlite3_db_config(db, SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER, 1, 0);
  /src/external/public-domain/sqlite/dist/
sqlite3ext.h 577 #define sqlite3_db_config sqlite3_api->db_config macro
shell.c 16736 sqlite3_db_config(pNew->dbm, SQLITE_DBCONFIG_TRIGGER_EQP, 1, (int*)0);
26244 sqlite3_db_config(p->db, SQLITE_DBCONFIG_DEFENSIVE, -1, &defensiveMode);
26245 sqlite3_db_config(p->db, SQLITE_DBCONFIG_DEFENSIVE, 0, 0);
26246 sqlite3_db_config(p->db, SQLITE_DBCONFIG_WRITABLE_SCHEMA, -1, &wrSchema);
26247 sqlite3_db_config(p->db, SQLITE_DBCONFIG_WRITABLE_SCHEMA, 1, 0);
26254 sqlite3_db_config(p->db, SQLITE_DBCONFIG_WRITABLE_SCHEMA, wrSchema, 0);
26255 sqlite3_db_config(p->db, SQLITE_DBCONFIG_DEFENSIVE, defensiveMode, 0);
26582 sqlite3_db_config(db, SQLITE_DBCONFIG_TRIGGER_EQP, -1, &triggerEQP);
26584 sqlite3_db_config(db, SQLITE_DBCONFIG_TRIGGER_EQP, 1, 0);
26597 sqlite3_db_config(db, SQLITE_DBCONFIG_TRIGGER_EQP, 0, 0)
    [all...]
sqlite3.h 1735 ** The sqlite3_db_config() interface is used to make configuration
1740 ** The second argument to sqlite3_db_config(D,V,...) is the
1745 ** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if
1748 SQLITE_API int sqlite3_db_config(sqlite3*, int op, ...);
2029 ** The [SQLITE_DBCONFIG_LOOKASIDE] option to [sqlite3_db_config()] can
2249 ** can be passed as the second parameter to the [sqlite3_db_config()] interface.
2251 ** The [sqlite3_db_config()] interface is a var-args function. It takes a
2253 ** parameters passed into sqlite3_db_config() depends on which of these
2257 ** configuration option" or "the (N+2)-th parameter to sqlite3_db_config()".
2261 ** should check the return code from [sqlite3_db_config()] to make sure tha
    [all...]
sqlite3.c 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 tha
142797 #define sqlite3_db_config macro
188052 SQLITE_API int sqlite3_db_config(sqlite3 *db, int op, ...){ function
    [all...]
  /src/external/public-domain/sqlite/dist/tea/generic/
tclsqlite3.c 2866 ** Configure the database connection using the sqlite3_db_config()
2903 sqlite3_db_config(pDb->db, aDbConfig[ii].op, -1, &v);
2927 sqlite3_db_config(pDb->db, aDbConfig[ii].op, onoff, &v);

Completed in 128 milliseconds