I don't use SQLite, but probably you can use "PRAGMA read_uncommitted = 1" as a workaround, but beware.Originally Posted by whoops.slo
Yes, SELECT acquires a SHARED lock which allows only reading, but UPDATE tries to acquire an EXCLUSIVE lock which can't coexist with any other locks, thus it fails.Originally Posted by whoops.slo
Bookmarks