Odbc Driver Install [ Desktop Exclusive ]

# Debian/Ubuntu apt-get install odbc-postgresql yum install postgresql-odbc

[PostgreSQL] Description = PostgreSQL ODBC driver Driver = /usr/lib/x86_64-linux-gnu/odbc/psqlodbcw.so Setup = /usr/lib/x86_64-linux-gnu/odbc/libpsqlodbcw.so Then define a DSN in /etc/odbc.ini : odbc driver install

# Install unixODBC (driver manager) brew install unixodbc brew install psqlodbc Example: SQL Server ODBC driver brew install msodbcsql18 odbc driver install

odbcinst -j # Shows configuration files and installed drivers Once installed, you must often configure a DSN (Data Source Name) so applications can use the driver. odbc driver install

# Add Microsoft repository curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - curl https://packages.microsoft.com/config/ubuntu/22.04/prod.list > /etc/apt/sources.list.d/mssql-release.list apt-get update ACCEPT_EULA=Y apt-get install -y msodbcsql18