
psqlODBC is the official PostgreSQL ODBC Driver. After installing this, you can create and access databases through custom applications. Visual Basic, VBA, C#, C/C , and other programming languages can be used with PostgreSQL ODBC. Being open-source, you can also access the source code at psqlODBC git repository.
v10.0 [Jan 22, 2018]
- Put back the handling of lock_CC_for_rb variable. The variable lock_CC_for_rb should be held per connection.
- Per report from Ayman Samamry.
- Fix SQLGetTypeInfo() so that it filters SQL_TYPE_DATE, SQL_TYPE_TIME or SQL_TYPE_TIMESTAMP for ODBC 2.x applications.
- Per report from Oleg Tonkikh.
- Revise ConfigDSN() so that it handles the 4th parameter(lpszAttribues) correctly.
- Per report from Haribabu Kommi.
- Fix a crash bug when handling error messages. Also modified some error messages.
- Let SQLTables() or SQLTablePrivileges() show partition tables.
- Fix build on Solaris defined(__SUNPRO_C) using Solaris Studio
- Reduce DB access to pg_class or pg_index by caching relhasoids, relhassubclass etc. It would improve the performance of SQLSetPos() or SQLBulkOperations() very much in some cases.
- Per report from Takayuki Tsunakawa.