今天,PostgreSQL ODBC开发组发布了最新版本的PG ODBC驱动:psqlODBC 11.00.0000。该版做了一些细微的改动,并完善了一个已知bug。
- Remove obsolete maps pointed out. POWER -> pow, CONCAT -> textcat, LEFT -> ltrunc, RIGHT -> rtrunc
- Remove connSettings option and/or pqopt option from the OutConnectionString parameter of SQLDriverConnect() when each option doesn’t exist in InConnectionString parameter.
- The parameters should be cast because parameters of concat() function are variadic “any”.
- Unbuffered-IO in Windows is incredibly slow. Instead call fflush() after fprintf().
- Add an alias DX of *Database* keyword for connection strings to aviod the use of “database” keyword which has a special meaning in some apps or middlewares.
- numeric items without precision are unlimited and there’s no natural map between SQL Data types. Add an option *Numeric(without precision) as*.
- Fix a bug that SQLSpecialColumns() returns oid/xmin incorrectly when a table does not exist.
下载地址:
https://www.postgresql.org/ftp/odbc/versions/src/
转自 https://www.oschina.net/news/101889/psqlodbc