Searched refs:temp_store (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/src/
H A Dmain.c285 if( meta[6]>0 && meta[6]<=2 && db->temp_store==0 ){
286 db->temp_store = meta[6];
502 db->temp_store = 2;
1099 ** db->temp_store variable, according to the following chart:
1101 ** TEMP_STORE db->temp_store Location of temporary database
1128 int location = db->temp_store==0 ? TEMP_STORE : db->temp_store;
H A Dpragma.c97 if( db->temp_store==ts ) return SQLITE_OK;
108 db->temp_store = ts;
508 ** PRAGMA temp_store
509 ** PRAGMA temp_store = "default"|"memory"|"file"
511 ** Return or set the local value of the temp_store flag. Changing
518 if( sqliteStrICmp(zLeft, "temp_store")==0 ){
520 { OP_ColumnName, 0, 1, "temp_store"},
524 sqliteVdbeAddOp(v, OP_Integer, db->temp_store, 0);
535 ** Return or set the value of the persistent temp_store flag. Any
544 { OP_ColumnName, 0, 1, "temp_store"},
[all...]
H A DsqliteInt.h75 ** 1 Use a file unless overridden by "PRAGMA temp_store"
76 ** 2 Use memory unless overridden by "PRAGMA temp_store"
324 ** The sqlite.temp_store determines where temporary database files
355 u8 temp_store; /* 1=file, 2=memory, 0=compile-time default */ member in struct:sqlite

Completed in 30 milliseconds