On 8/15/15, Keith Medcalf <kmedcalf at dessus.com> wrote: > > This is something changed in SQLITE itself. These tests are on Windows 10 > using the current MinGW compiler with the same configuration and windows > headers. >
Do you also have MSYS installed? If so can you run the following shell script and see if it demonstrates the problem on Win10? It does not on my Win7 and Win8 boxes. rm -rf t1.db* ./sqlite3 t1.db <<\EOF PRAGMA journal_mode=WAL; CREATE TABLE t1(a,b,c); INSERT INTO t1 VALUES(1,2,3),(4,5,6); EOF ls -l t1.db* echo '*******************' ./sqlite3 'file:t1.db?mode=ro' <<\EOF SELECT * FROM t1; PRAGMA journal_mode; .exit 1 EOF ls -l t1.db -- D. Richard Hipp drh at sqlite.org