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
let flags:c_int = ffi::SQLITE_OPEN_FULLMUTEX | db.flags.bits();
42
+
41
43
let err = unsafe{
44
+
if ffi::sqlite3_threadsafe() == 0{
45
+
returnErr(Error::ConnectionFailed(String::from("sqlite3 was compiled with SQLITE_THREADSAFE=0 and must be compiled with SQLITE_THREADSAFE=1 or SQLITE_THREADSAFE=2.")));
0 commit comments