Home
last modified time | relevance | path

Searched refs:temp_store (Results 1 – 4 of 4) sorted by relevance

/titanic_41/usr/src/lib/libsqlite/test/
H A Dpragma.test274 # Test the temp_store and default_temp_store pragmas
278 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 …]
/titanic_41/usr/src/lib/libsqlite/src/
H A Dmain.c285 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()
H A Dpragma.c97 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()
H A DsqliteInt.h355 u8 temp_store; /* 1=file, 2=memory, 0=compile-time default */ member