Home | History | Annotate | Download | only in orig

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),
98787 ** as needing reloading. This must be done when using the SQLITE_TEMP_STORE
99453 if( SQLITE_TEMP_STORE==0
99454 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1)
99455 || (SQLITE_TEMP_STORE==2 && db->temp_store==1)
123988 ** parameter) and the compile time value of SQLITE_TEMP_STORE. The
123992 ** SQLITE_TEMP_STORE db->temp_store Location of temporary database
124004 #if SQLITE_TEMP_STORE==1
124007 #if SQLITE_TEMP_STORE==2
124010 #if SQLITE_TEMP_STORE==3
124013 #if SQLITE_TEMP_STORE<1 || SQLITE_TEMP_STORE>3