Re: [sqlite] [EXTERNAL] SQLite Application Server Concurrency

2018-01-11 Thread James Colehan
SQLite Application Server Concurrency Accessing SQLite files via network filesystems is high on the list of "how to corrupt SQLite databases", see section 2.1 in http://sqlite.org/howtocorrupt.html WAL mode requires shared memory. How are you going to do that with processes running on di

Re: [sqlite] [EXTERNAL] SQLite Application Server Concurrency

2018-01-11 Thread Hick Gunter
Accessing SQLite files via network filesystems is high on the list of "how to corrupt SQLite databases", see section 2.1 in http://sqlite.org/howtocorrupt.html WAL mode requires shared memory. How are you going to do that with processes running on different PCs? See sections 4 and 6 of