Lines Matching defs:SQLITE_TEMP_STORE
14747 ** Provide a default value for SQLITE_TEMP_STORE in case it is not specified
14750 #ifndef SQLITE_TEMP_STORE
14751 # define SQLITE_TEMP_STORE 1
14756 ** SQLITE_TEMP_STORE is set to 3 (never use temporary files), set it
14759 #if SQLITE_TEMP_STORE==3 || SQLITE_THREADSAFE==0
15537 # undef SQLITE_TEMP_STORE
15538 # define SQLITE_TEMP_STORE 3 /* Always use memory for temporary storage */
22627 #ifdef SQLITE_TEMP_STORE
22628 "TEMP_STORE=" CTIMEOPT_VAL(SQLITE_TEMP_STORE),
138904 ** as needing reloading. This must be done when using the SQLITE_TEMP_STORE
139734 if( SQLITE_TEMP_STORE==0
139735 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1)
139736 || (SQLITE_TEMP_STORE==2 && db->temp_store==1)
182387 ** parameter) and the compile time value of SQLITE_TEMP_STORE. The
182391 ** SQLITE_TEMP_STORE db->temp_store Location of temporary database
182403 #if SQLITE_TEMP_STORE==1
182406 #if SQLITE_TEMP_STORE==2
182409 #if SQLITE_TEMP_STORE==3
182413 #if SQLITE_TEMP_STORE<1 || SQLITE_TEMP_STORE>3