pyodbc icon indicating copy to clipboard operation
pyodbc copied to clipboard

Python ODBC bridge

Results 131 pyodbc issues
Sort by recently updated
recently updated
newest added
trafficstars

**Summary** Installing pyodbc on aarch64 via pip using command "pip3 install pyodbc" tries to build wheel from source code. **Problem description** pyodbc doesn't have wheel for aarch64 on PyPI repository....

Investigating

### Environment To diagnose, we usually need to know the following, including version numbers. On Windows, be sure to specify 32-bit Python or 64-bit: - Python: 3.6.5 - pyodbc: 4.0.28...

### Environment - Python: 3.7.4 - pyodbc: 4.0.27 - OS: win10 64bit - DB: SQLITE and MSSQL - driver: sqliteodbc_w64.exe from [here](http://www.ch-werner.de/sqliteodbc/) ### Issue When trying to unpickle a result...

### Environment - Python: 3.4.3 64bit - pyodbc: 4.0.18+ - OS: Windows 10 64bit - DB: Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production - driver: Oracle 12.02.00.01...

Waiting for Info
Environment or Driver Issue

### Environment - Python: 3.6.3 - pyodbc: 4.0.30 - OS: WSL, Windows 10, Debian 10 - DB: SQL Server - driver: ODBC Driver 17 for SQL Server ### Issue Numbers...

Please first make sure you have looked at: * Documentation: https://github.com/mkleehammer/pyodbc/wiki * Other issues ### Environment To diagnose, we usually need to know the following, including version numbers. On Windows,...

Waiting for Info

### Environment - Python: any - pyodbc: any - OS: macOS / OS X / Mac OS X - DB: any ODBC- or JDBC-accessible DB - driver: any iODBC-compatible driver...

Request

# Summary Attempting to use bind parameters for number values fails. e.g. cursor.execute("INSERT INTO foobar (ID) VALUES (?)", [5]) gets the following response: Traceback (most recent call last): File "",...

Investigating
Environment or Driver Issue

I'm opening this issue primarily as a discussion. In desktop applications (specifically, in Windows apps), ODBC drivers often prompt the user directly for credentials. I noticed that pyodbc is specifying...

On Hold

Currently Cursor_dealloc looks like: ``` static void Cursor_dealloc(Cursor* cursor) { if (Cursor_Validate((PyObject*)cursor, CURSOR_REQUIRE_CNXN)) { closeimpl(cursor); } Py_XDECREF(cursor->inputsizes); PyObject_Del(cursor); } ``` The issue is that `closeimpl()` can register an exception, which...