Re: [sqlite] Malformed databases and multithreading

2017-04-15 Thread Simon Slavin
On 14 Apr 2017, at 11:37pm, Simon Slavin wrote: > Have each program using SQLite execute > > sqlite3_config(SQLITE_CONFIG_MULTITHREAD) That should have been Have each program using SQLite execute sqlite3_config(SQLITE_CONFIG_MULTITHREAD) Apologies.

Re: [sqlite] Malformed databases and multithreading

2017-04-15 Thread Jens Alfke
> On Apr 14, 2017, at 2:53 PM, Paul Egli wrote: > > On the "how to corrupt" page ( http://sqlite.org/howtocorrupt.html > ) i > do not see any mention of using SQLite in an incorrect way with > respect to thread safety. Huh, you’re

Re: [sqlite] Malformed databases and multithreading

2017-04-14 Thread Simon Slavin
On 14 Apr 2017, at 10:53pm, Paul Egli wrote: > On the "how to corrupt" page ( http://sqlite.org/howtocorrupt.html ) i > do not see any mention of using SQLite in an incorrect way with > respect to thread safety. Is there really no way that, for example, > using the same

[sqlite] Malformed databases and multithreading

2017-04-14 Thread Paul Egli
Main question/comment: - On the "how to corrupt" page ( http://sqlite.org/howtocorrupt.html ) i do not see any mention of using SQLite in an incorrect way with respect to thread safety. Is there really no way that, for example, using the same connection on multiple threads at the same time