Re: [sqlite] Online backup API and sqlite3_interrupt()

2012-02-29 Thread Richard Hipp
On Wed, Feb 29, 2012 at 11:59 AM, Gregory Johnson wrote: > Hi, > I have an application where one thread (A) is executing various statements > and another thread (B) is performing an online backup. These two threads > share the same source database connection; the SQLite

[sqlite] Online backup API and sqlite3_interrupt()

2012-02-29 Thread Gregory Johnson
Hi, I have an application where one thread (A) is executing various statements and another thread (B) is performing an online backup. These two threads share the same source database connection; the SQLite threading mode is set to serialized. I wish to stop the online backup from another thread