On 21 Feb 2015, at 9:01pm, Yuriy Stelmakh <yuriy128 at gmail.com> wrote:
> When using read uncommitted pragma, is it possible to get a row of data > where some columns reflect state of that row at one point, while others at > another? For example when you are reading in one thread while writing in > another. No. They'll all be either one thing or the other. In other words, even with the PRAGMA set, SQLite is still transaction-safe. It uses a lock on the entire database to prevent the problem you described. Simon.

