I am using sqlite3 with an FTS3 index for a software running on an iPod Touch.

I have a text field that launches a full text search query at every key press.

There is a huge speed difference between these devices and what I got 
accustomed to on desktop computers...

To mitigate that, I use an asynchronous query and send a sqlite3_interrupt 
before each new query when a new key is pressed.

However, it seems that some process (that can take several tens of seconds) in 
the first sqlite3_step does not test for interrupt (resulting in simultaneous 
uninterrupted concurrent threads...)

Is there some way to change that?

Thanks in advance for your help,

Best regards,

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to