You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow databases to be shareable but only in full-mutex mode
https://www.sqlite.org/threadsafe.html
"Full mutex" mode is the only time when a SQLite database can be shared
between multiple threads. Multi-thread mode only means that multiple
threads can have their own instances of a database object that point at
the same file, but multiple threads cannot access the object
concurrently.
0 commit comments