Reading Uncommitted Changes From Sqlite Database
I wrote an application (using Qt in C++) which inserts data into a SQLite database. Another application reads data from the same database, but I noticed that it is not possible to
Solution 1:
I answer to myself: no, it seems it is not possible. The read_uncommitted isolation mode requires to enable the shared cache, which is possible currently only for different threads living in the same process. This seems the best place to study this: http://www.sqlite.org/sharedcache.html.
Post a Comment for "Reading Uncommitted Changes From Sqlite Database"