On 7/11/16, pavel.pimenov <[email protected]> wrote: > Hi > > journal_mode=PERSIST ! but sqlite 3.13.0 tries to open a file > *.sqlite-wal
SQLite does not know the journal mode until it has opened the database. And it cannot safely open the database without first checking for the existance of a -wal file that some prior process might have left laying around due to a (non-SQLite related) crash. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

