Hello,
I'm looking for a way to cancel/interrupt a long running query.
I found this on the sqlite website
http://www.sqlite.org/c3ref/interrupt.html
although don't see it exposed in the SQLiteConnection class.
If - as I suspect - this function isn't exposed, does anyone know of any other technique I can use?
(bearing in mind I'm in a multithreaded environment and would like to be able to interrupt a query from a different thread.)
Thanks.