Psqlodbc ((full)) Jun 2026
is the official, open-source ODBC (Open Database Connectivity) driver for PostgreSQL. It enables ODBC-compliant applications—such as Microsoft Excel, Tableau, Power BI, Qlik, LibreOffice, and custom Windows/Linux apps—to connect to and interact with PostgreSQL databases as if they were native data sources.
# Connect and query cnxn = pyodbc.connect(conn_str) query = "SELECT * FROM mytable" df = pd.read_sql(query, cnxn) psqlodbc
| OS | Architectures | Notes | |----------------|---------------|----------------------------------------| | Windows | x64, x86 | MSI installer available | | Linux | x64, ARM, s390x| Packages for major distros (RPM/DEB) | | macOS | x64, ARM64 | Via Homebrew or source compilation | | FreeBSD / Solaris| x64 | Source build | is the official