Re: [sqlite] Terminating long query in C ?

2006-10-10 Thread drh
"Igor Tandetnik" <[EMAIL PROTECTED]> wrote: > > Another way is to use sqlite3_interrupt. Before SQLite 3.3.7 (which I > believe is the latest version at this time) 3.3.8 was released yesterday (Monday) morning. I have not sent out an official announcement on this mailing list. Sorry. >

Re: [sqlite] Terminating long query in C ?

2006-10-10 Thread Dennis Cote
Mohd Radzi Ibrahim wrote: How do I cancel a long running query? In OLEDB I can call pICommand->Cancel() from a different thread to kill the running query. How can I do the same in SQLite? Radzi, See http://www.sqlite.org/capi3ref.html#sqlite3_interrupt for information on

[sqlite] Terminating long query in C ?

2006-10-10 Thread Mohd Radzi Ibrahim
Hi, How do I cancel a long running query? In OLEDB I can call pICommand->Cancel() from a different thread to kill the running query. How can I do the same in SQLite? thanks. Radzi.