Searched refs:temp_store (Results 1 – 4 of 4) sorted by relevance
274 # Test the temp_store and default_temp_store pragmas278 PRAGMA temp_store='default';279 PRAGMA temp_store;284 PRAGMA temp_store='file';285 PRAGMA temp_store;290 PRAGMA temp_store='memory';291 PRAGMA temp_store;302 PRAGMA temp_store;309 PRAGMA temp_store;325 PRAGMA temp_store;[all …]
285 if( meta[6]>0 && meta[6]<=2 && db->temp_store==0 ){ in sqliteInitOne()286 db->temp_store = meta[6]; in sqliteInitOne()502 db->temp_store = 2; in sqlite_open()1128 int location = db->temp_store==0 ? TEMP_STORE : db->temp_store; in sqliteBtreeFactory()
97 if( db->temp_store==ts ) return SQLITE_OK; in changeTempStorage()108 db->temp_store = ts; in changeTempStorage()524 sqliteVdbeAddOp(v, OP_Integer, db->temp_store, 0); in sqlitePragma()
355 u8 temp_store; /* 1=file, 2=memory, 0=compile-time default */ member