RE: [sqlite] Insertion and Search at a same time is it possible?

2007-09-21 Thread Sreedhar.a
Hi John Stanton, Thankyou very much, I will try in this method. Best Regards, A.Sreedhar. -Original Message- From: John Stanton [mailto:[EMAIL PROTECTED] Sent: Friday, September 21, 2007 6:20 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] Insertion and Search at a same time is

Re: [sqlite] Insertion and Search at a same time is it possible?

2007-09-21 Thread John Stanton
You can read and write to the database concurrently provided that your program can handle SQLITE_BUSY events. Sreedhar.a wrote: Hi Everyone, I am implementing server database using sqlite. I will be having the multiple clients browsing the database. At the same time the database can also b

[sqlite] Insertion and Search at a same time is it possible?

2007-09-20 Thread Sreedhar.a
Hi Everyone, I am implementing server database using sqlite. I will be having the multiple clients browsing the database. At the same time the database can also be updated. I can copy the database into the local memory of my system and can perform search. Can i implement inserting the records