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),
92229 ** as needing reloading. This must be done when using the SQLITE_TEMP_STORE
92890 if( SQLITE_TEMP_STORE==0
92891 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1)
92892 || (SQLITE_TEMP_STORE==2 && db->temp_store==1)
114014 ** parameter) and the compile time value of SQLITE_TEMP_STORE. The
114018 ** SQLITE_TEMP_STORE db->temp_store Location of temporary database
114030 #if SQLITE_TEMP_STORE==1
114033 #if SQLITE_TEMP_STORE==2
114036 #if SQLITE_TEMP_STORE==3
114039 #if SQLITE_TEMP_STORE<1 || SQLITE_TEMP_STORE>3