pymonetdb icon indicating copy to clipboard operation
pymonetdb copied to clipboard

Investigate thread safety

Open gijzelaerr opened this issue 4 years ago • 0 comments

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.

gijzelaerr avatar Aug 20 '19 08:08 gijzelaerr