Mike Ruffing

Results 3 comments of Mike Ruffing

Can database connections be configured to multi-thread mode by calling `SQLiteConfig.setOpenMode` with `SQLiteOpenMode.NOMUTEX`? [Reference](https://www.sqlite.org/threadsafe.html) Specifically section 4, using the NOMUTEX flag when calling sqlite3_open_v2.

It looks like `sqlite3_open_v2` is being used: https://github.com/xerial/sqlite-jdbc/blob/master/src/main/java/org/sqlite/core/NativeDB.c#L533

@davidhedley It has been a while since I looked at this but based on you and @exuvo's testing it looks like there might be some type of locking happening at...