Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Microsoft.Data.Sqlite: Use multi-thread mode
Previously, the default mode (usually Serialized) was used. Since ADO.NET connections are generally not thread safe, this caused unnecessary lock checking in SQLite. Note, this will break compatibility with versions compiled with SQLITE_THREADSAFE=0. However, we plan to add a connection pool in this release which, I suspect, will also break compatibility with those versions anyway. Resolves #22330
- Loading branch information