PostgresSQL ODBC drivers on Windows 7 not showing up

I am running win7 64bit, so I installed (psqlodbc_09_00_0300-x64.zip) msi 64-bit drivers for postgres odbc .

I also tried to start the odbc manager from the following location: "% systemdrive% \ Windows \ SysWoW64 \ odbcad32.exe"

But I still don't see any postgres drivers that I can use.

Does anyone know how to make them appear?

enter image description here

0
source share
2 answers

Usually in this case you want to install both 64-bit drivers (for 64-bit programs) and 32-bit drivers (for 32-bit programs). If this does not work, you have two options:

  • . .. , .

  • regsvr32 32- regsvr64 64-

+1

DSN 32- :% WINDIR%\SysWOW64\odbcad32.exe 64- :% WINDIR%\System32\odbcad32.exe

. http://psqlodbc.projects.pgfoundry.org/faq.html#6.8

+2

Source: https://habr.com/ru/post/1527804/


All Articles