Excel receive data from PostgreSQL using iODBC connector

702 views Asked by At

I'm trying to using psqlODBC driver to receive data from PostgreSQL to Excel in macOS Catalina.

But I keep getting this error IM003 [iODBC][Driver Manager]Specified driver could not be loaded

image

Following things are the method I've tried but still don't succeed.

  • Disable SIP

  • Move psqlodbca.so under the /Library/ODBC folder in order to let Excel open in sandbox environment.

  • Changed original /usr/lib/libpq.5.dylib to PostgreSQL's dylib file by using command

    sudo ln -s /postgresql_install_folder/lib/libpq.5.dylib /usr/lib/libpq.5.dylib

I download the source from https://www.postgresql.org/ftp/odbc/versions/src/ and follow this article https://odbc.postgresql.org/docs/unix-compilation.html to compile the driver and install the psqlodbca.so under /Library/ODBC

My /Library/ODBC/odbc.ini

[ODBC Data Sources]
postgresAscii   = ascii

[postgresAscii]
Driver          = {ascii}
Description     = postgres odbc for user type ascii
Database        = db
Server          = 127.0.0.1
Port            = 5432
FetchBufferSize = 99

My /Library/ODBC/odbcinst.ini

[ODBC Drivers]
ascii = Installed

[ascii]
Driver = /Library/ODBC/psqlodbca.so
Setup  =

I can connected to my DB using iODBC Administrator64.app

connected_using_iODBCAdmin64

0

There are 0 answers