Lines Matching refs:SQLITE_TEMP_STORE
14750 #ifndef SQLITE_TEMP_STORE
14751 # define SQLITE_TEMP_STORE 1 macro
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 */ macro
22627 #ifdef SQLITE_TEMP_STORE
22628 "TEMP_STORE=" CTIMEOPT_VAL(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)
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