Re: [sqlite] sqlite abort

2014-01-17 Thread Simon Slavin
On 17 Jan 2014, at 6:22pm, d b wrote: > What is the default time? Zero. No retrying at all. Any conflict is treated as an error. > what is the ideal time for sqlite? However long you want your application to try before deciding that it is never going to recover and has

Re: [sqlite] sqlite abort

2014-01-17 Thread d b
Thank you. What is the default time? what is the ideal time for sqlite? On Fri, Jan 17, 2014 at 6:53 PM, d b wrote: > Hi all, > > When database busy with read/write operations, it's thrown sqlite abort > error while delete a record. > > what does it mean sqlite

Re: [sqlite] sqlite abort

2014-01-17 Thread Simon Slavin
On 17 Jan 2014, at 1:23pm, d b wrote: > When database busy with read/write operations, it's thrown sqlite abort > error while delete a record. Have you set a timeout ? If you haven't, SQLite will try only once and will not wait until other processes are finished the file.

[sqlite] sqlite abort

2014-01-17 Thread d b
Hi all, When database busy with read/write operations, it's thrown sqlite abort error while delete a record. what does it mean sqlite abort(Callback routine requested an abort)? Shouldn't application delete when database busy with read/write operations? Thanks, a v