Home | History | Annotate | Download | only in dist

Lines Matching defs:SQLITE_TEMP_STORE

8418 ** Provide a default value for SQLITE_TEMP_STORE in case it is not specified
8421 #ifndef SQLITE_TEMP_STORE
8422 # define SQLITE_TEMP_STORE 1
13783 #if defined(SQLITE_TEMP_STORE) && !defined(SQLITE_TEMP_STORE_xc)
13784 "TEMP_STORE=" CTIMEOPT_VAL(SQLITE_TEMP_STORE),
98807 ** as needing reloading. This must be done when using the SQLITE_TEMP_STORE
99473 if( SQLITE_TEMP_STORE==0
99474 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1)
99475 || (SQLITE_TEMP_STORE==2 && db->temp_store==1)
124008 ** parameter) and the compile time value of SQLITE_TEMP_STORE. The
124012 ** SQLITE_TEMP_STORE db->temp_store Location of temporary database
124024 #if SQLITE_TEMP_STORE==1
124027 #if SQLITE_TEMP_STORE==2
124030 #if SQLITE_TEMP_STORE==3
124033 #if SQLITE_TEMP_STORE<1 || SQLITE_TEMP_STORE>3