On 30 Aug 2013, at 5:36am, techi eth <[email protected]> wrote: > Thanks for suggestion. I will take it forward. > > locking will happen with two simultaneous processes accessing for read also?
I don't think it can happen if they're both reading. But a process which is reading could block a process which is writing, and a process which is writing could block a process which is reading. The easiest way to cope with it is to always set a timeout and handle the error correctly. Simon. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

