Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:SQLITE_TEMP_STORE

7342 ** Provide a default value for SQLITE_TEMP_STORE in case it is not specified
7345 #ifndef SQLITE_TEMP_STORE
7346 # define SQLITE_TEMP_STORE 1
12145 #ifdef SQLITE_TEMP_STORE
12146 "TEMP_STORE=" CTIMEOPT_VAL(SQLITE_TEMP_STORE),
87663 ** as needing reloading. This must be done when using the SQLITE_TEMP_STORE
88289 if( SQLITE_TEMP_STORE==0
88290 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1)
88291 || (SQLITE_TEMP_STORE==2 && db->temp_store==1)
108727 ** parameter) and the compile time value of SQLITE_TEMP_STORE. The
108731 ** SQLITE_TEMP_STORE db->temp_store Location of temporary database
108743 #if SQLITE_TEMP_STORE==1
108746 #if SQLITE_TEMP_STORE==2
108749 #if SQLITE_TEMP_STORE==3
108752 #if SQLITE_TEMP_STORE<1 || SQLITE_TEMP_STORE>3