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
at the moment we are not thread safe when sharing connections or cursors. This is okay, the DBAPI allowes it, as long as as the .threadsafety parameter is set correctly:
at the moment we are not thread safe when sharing connections or cursors. This is okay, the DBAPI allowes it, as long as as the
.threadsafety
parameter is set correctly:https://www.python.org/dev/peps/pep-0249/#threadsafety
which we do. But ideally we are also threadsafe when sharing connections and cursors.
The text was updated successfully, but these errors were encountered: