Lines Matching defs:SQLITE_TEMP_STORE
7873 ** Provide a default value for SQLITE_TEMP_STORE in case it is not specified
7876 #ifndef SQLITE_TEMP_STORE
7877 # define SQLITE_TEMP_STORE 1
12758 #ifdef SQLITE_TEMP_STORE
12759 "TEMP_STORE=" CTIMEOPT_VAL(SQLITE_TEMP_STORE),
92193 ** as needing reloading. This must be done when using the SQLITE_TEMP_STORE
92854 if( SQLITE_TEMP_STORE==0
92855 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1)
92856 || (SQLITE_TEMP_STORE==2 && db->temp_store==1)
113978 ** parameter) and the compile time value of SQLITE_TEMP_STORE. The
113982 ** SQLITE_TEMP_STORE db->temp_store Location of temporary database
113994 #if SQLITE_TEMP_STORE==1
113997 #if SQLITE_TEMP_STORE==2
114000 #if SQLITE_TEMP_STORE==3
114003 #if SQLITE_TEMP_STORE<1 || SQLITE_TEMP_STORE>3