> On Oct 5, 2016, at 5:49 AM, Santiago Bayeta <sbay...@hotmail.com> wrote:
> 
> But I also read from SQLite docs that now SQLite supports unlimited Reading 
> operations while writing.

It does if the databases uses a WAL (Write-Ahead Log). This is a persistent 
per-database setting that can be enabled by a ‘pragma’ call.

> I just wanted to ask whether SQLite.NET <http://sqlite.net/> supports this 
> latter locking.

It will, unless it tries to do its own locking above SQLite. For instance if it 
uses a C# read-write lock that prevents other threads from making SQLite calls 
at all while one thread is in a transaction, because it “knows” that they’d 
just block.

But if it just stays out of the way and lets your code call the database, it 
should be OK. It wouldn’t be hard to write a little test app to see if this is 
the case.

—Jens
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to