chetana bhargav wrote:
Does sqlite provides asynchronous loading of data. Basically if I
have something around 3000 records and want to do some query, instead
of returning the result in one single query is it possible for me to
relinquish the control to other apps so that I wont get a time out
error. and get the data in sets.

Certainly. Just use the prepare/bind/step interface rather than the (legacy) sqlite3_exec() interface. Prepare your query, bind any parameters to it, and then retrieve as many rows at a time as you want using sqlite3_step().

Reply via email to