Searched refs:temp_store (Results 1 – 6 of 6) sorted by relevance
272 # Test the temp_store and default_temp_store pragmas276 PRAGMA temp_store='default';277 PRAGMA temp_store;282 PRAGMA temp_store='file';283 PRAGMA temp_store;288 PRAGMA temp_store='memory';289 PRAGMA temp_store;300 PRAGMA temp_store;307 PRAGMA temp_store;323 PRAGMA temp_store;[all …]
11 PRAGMA temp_store = MEMORY;
282 if( meta[6]>0 && meta[6]<=2 && db->temp_store==0 ){ in sqliteInitOne()283 db->temp_store = meta[6]; in sqliteInitOne()499 db->temp_store = 2; in sqlite_open()1125 int location = db->temp_store==0 ? TEMP_STORE : db->temp_store; in sqliteBtreeFactory()
94 if( db->temp_store==ts ) return SQLITE_OK; in changeTempStorage()105 db->temp_store = ts; in changeTempStorage()521 sqliteVdbeAddOp(v, OP_Integer, db->temp_store, 0); in sqlitePragma()
352 u8 temp_store; /* 1=file, 2=memory, 0=compile-time default */ member