Psql Odbc | Work
: A system-level component (like unixODBC on Linux or the ODBC Data Source Administrator on Windows) that loads the specific driver.
cursor = conn.cursor() cursor.execute("SELECT id, name FROM users WHERE active = true") for row in cursor.fetchall(): print(row.id, row.name) psql odbc
PostgreSQL ODBC Driver Documentation Source: PostgreSQL Global Development Group Link: PostgreSQL ODBC Official Docs (Specifically the Client Interfaces section, or directly via the psqlODBC project page ). : A system-level component (like unixODBC on Linux
This is the official manual. It covers: