How should I deal with sqlite errors?
- by Dustin
I have a long running application written in a mix of C and C++ that stores data in sqlite.
While I am confident that committed data will remain available (barring mechanical failure) and uncommitted data will not be, it's not clear to me what I can do with this sort of middle state.
I do a large number of inserts in a transaction and then commit…