SQLite Forum

How to ReadUncommitted for c# .net framework 4.5
Login
Intention of the test is to validate following statement at  https://sqlite.org/isolation.html which says

"If two database connections shared the same cache and the reader has enabled the read_uncommitted pragma, then the reader will be able to see changes made by the writer before the writer transaction commits. The combined use of shared cache mode and the read_uncommitted pragma is the only way that one database connection can see uncommitted changes on a different database connection. In all other circumstances, separate database connections are completely isolated from one another."


However; unit test is failing. Seeking help to know if any change to unit test required to confirm the feature