pymonetdb icon indicating copy to clipboard operation
pymonetdb copied to clipboard

The Python API for MonetDB

Results 3 pymonetdb issues
Sort by recently updated
recently updated
newest added

Pymonetdb cannot handle it when you send multiple SQL statements in a single call to `Cursor.execute()`. For example, ``` q = """ SELECT value FROM sys.generate_series(0,5); SELECT value from sys.generate_series(10,15);...

Using prepared statements can be more efficient but [PEP 249](https://peps.python.org/pep-0249/) does not provide an API for it. Instead, [it mentions](https://peps.python.org/pep-0249/#execute) that > A reference to the operation will be retained...

enhancement

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:...