Hey Mojo, Have you actually tested that the SQLite version you are working with is not thread safe? https://www.sqlite.org/faq.html#q6
Have you tried asking yourself why is it crashing? I can only think of one reason: - You are using the same database connection in multiple threads simultaneously This problem will occur even though you are running SQLite in multi-thread mode. Therefore you will most likely want to open a new connection in every thread you are going to want to communicate with the SQLite database. On Tue, Apr 3, 2012 at 1:50 PM, MojoDK <[email protected]> wrote: > Hi, > > I'm using SQLite (ver. 2.0.5.0) in my app. This SQLite is not threadsafe (my > app is crashing). > > Isn't there a threadsafe SQLite that works with Monotouch? ... if so, where > can I find it? > > Thanks!!! > Mojo > > -- > View this message in context: > http://monotouch.2284126.n4.nabble.com/Threadsafe-SQLite-tp4528562p4528562.html > Sent from the MonoTouch mailing list archive at Nabble.com. > _______________________________________________ > MonoTouch mailing list > [email protected] > http://lists.ximian.com/mailman/listinfo/monotouch -- Med Venlig Hilsen / With Best Regards Tomasz Cielecki http://ostebaronen.dk _______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
