pyodbc
pyodbc copied to clipboard
Python ODBC bridge
A call to cursor.rowIdColumns('table_name', None, None, False): passes an empty table name string into the stored proc call on sql server, this doesn't change if I explicitly set the catalog...
A search of this repo shows cases where an exception like the following is thrown by PyODBC (We got one of these recently on 5.2.0): ``` returned a result with...
pyodbc https://pypi.org/project/pyodbc/5.2.0/ can be imported to Azure automation successfully, but cannot use it in runbook. Repro runbook script: #!/usr/bin/env python3 import pyodbc runtime version: Python 3.10 error message: Traceback (most...
Developers should know about System DSNs because for non-connect operations (remove, configure...) only User DSNs are expected to work, while System DSNs would require elvation...
**Description:** When executing a query that includes a TRY/CATCH SQL block, the transaction appears to silently roll back without throwing any errors. This behavior causes statements prior to TRY/CATCH to...
- Add SQL_ATTR_DRIVER_THREADING (1028) option for calling `getinfo()`
Attempt to connect IBM Informix Database Server is ending in crash with fatal error "stack smashing detected". Native C program in equal environment (ODBC driver + configuration odbcinst.ini, odbc.ini) works...
Attempt to get content of BINARY column in table of DB2 11.5 database causes exception: for row in cur: pyodbc.ProgrammingError: ('ODBC SQL type -98 is not yet supported. column-index=4 type=-98',...
Hello @mkleehammer Can you please expose the native SQL handles used by pyodbc ? (similar to how Qt (PySide6) exposes the native HWND as the result of winId() method or...
### Environment - Python: 3.9.19 - pyodbc: 5.2.0 - OS: Ubuntu 22.04.1 - DB: SQL Server - driver: ODBC Driver 17 for SQL Server ### Issue I'm trying to follow...