Dear developers, Please, look at following instructions.
1) Add SQLITE_IOCAP_ATOMIC or SQLITE_IOCAP_ATOMIC4K flags to unixDeviceCharacteristics() function (or any OS related functions) 2) Add SQLITE_ENABLE_ATOMIC_WRITE to compile option 3) Compile 4) run sqlite3 - sqlite3 test.db 5) sqlite> pragma journal_mode=persist; 6) sqlite> create table a(id); 7) sqlite> pragma journal_mode=wal; 8) sqlite> insert into a values (1); With these instructions, 'test.db-journal' and 'test.db-wal' are exists at same time. Regards, Yongil Jang. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

