Home
last modified time | relevance | path

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

/sqlite-3.40.0/test/
H A Dpragma.test1168 PRAGMA temp_store;
1186 PRAGMA temp_store;
1205 PRAGMA temp_store;
1268 PRAGMA temp_store = 0;
1269 PRAGMA temp_store;
1274 PRAGMA temp_store = 1;
1275 PRAGMA temp_store;
1280 PRAGMA temp_store = 2;
1281 PRAGMA temp_store;
1287 PRAGMA temp_store;
[all …]
H A Dsubjournal.test18 PRAGMA temp_store = memory;
H A Dstmt.test43 PRAGMA temp_store = file;
H A Dtempdb.test87 PRAGMA temp_store = 'memory';
H A Dsort5.test76 execsql { PRAGMA temp_store = 1 }
H A Dvacuum5.test132 PRAGMA temp_store = file;
H A Dsavepoint7.test110 PRAGMA temp_store=MEMORY;
H A Dmalloc5.test284 PRAGMA temp_store = memory;
313 PRAGMA temp_store = memory;
H A Dcrash2.test96 PRAGMA temp_store = memory;
H A Dioerr2.test124 PRAGMA temp_store = memory;
H A Dsyscall.test186 PRAGMA temp_store = file;
H A Dpragma4.test56 29 "PRAGMA temp_store = memory"
H A Dsort.test518 execsql "PRAGMA temp_store = $tmpstore; PRAGMA threads = $nWorker"
H A Dio.test400 PRAGMA temp_store = memory;
H A Dconflict.test320 execsql {pragma temp_store=file}
H A Dconflict2.test326 execsql {pragma temp_store=file}
H A Dpagerfault.test1131 db eval { PRAGMA temp_store = file }
H A Dpager1.test289 7 { PRAGMA synchronous = NORMAL ; PRAGMA temp_store = 0 } {
293 8 { PRAGMA synchronous = NORMAL ; PRAGMA temp_store = 2 } {
/sqlite-3.40.0/src/
H A Dpragma.c158 if( db->temp_store==ts ) return SQLITE_OK; in changeTempStorage()
162 db->temp_store = (u8)ts; in changeTempStorage()
950 returnSingleInt(v, db->temp_store); in sqlite3Pragma()
983 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1) in sqlite3Pragma()
984 || (SQLITE_TEMP_STORE==2 && db->temp_store==1) in sqlite3Pragma()
H A Dmain.c2558 return ( db->temp_store==2 ); in sqlite3TempInMemory()
2561 return ( db->temp_store!=1 ); in sqlite3TempInMemory()
3401 db->temp_store = 2; in openDatabase()
H A DsqliteInt.h1558 u8 temp_store; /* 1: file 2: memory 0: default */ member
/sqlite-3.40.0/tool/
H A Dmkpragmatab.tcl201 NAME: temp_store