http://sqlite.org/pragma.html#pragma_synchronous
Says:?NORMAL is the default when in WAL mode.?
But,

sqlite3 e:\files\t.db
SQLite version 3.8.8.3 2015-02-25 13:29:11
Enter ".help" for usage hints.
sqlite> pragma journal_mode;
wal
sqlite> pragma synchronous;                             -- ???
2

sqlite> .open e:\\files\\t1.db
sqlite> pragma journal_mode;
delete
sqlite> pragma journal_mode=wal;
wal
sqlite> pragma synchronous;
2
sqlite>


Sent from Mail for Windows 10

Reply via email to