You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improved version handling introduced by Dave Page.
The driver version is 07.01.0002 now.
1) initialized pg_version by DSN's protocol info
so that we could always use pg_version info
once a connection is established (pg_version()
didn't exist before 6.4). PROTOCOL_XX() macros
are removed(except from connection.[ch]).
2) provided a few macros to encapsulate connection's
version info and replaced existent comparison
stuff by those macros.
3) change SQLTables() so that 7.1 servers could show
views.
In addtion, the following patch from Dave Page is applied.
This patch fixes a bug in SQLGetInfo for SQL_DBMS_VER which corrupted the
driver version string. The driver version number has also been incremented
to 07.01.0002.
Regards, Dave. <<odbc.diff>>
Copy file name to clipboardExpand all lines: src/interfaces/odbc/psqlodbc.rc
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -204,8 +204,8 @@ END
204
204
//
205
205
206
206
VS_VERSION_INFO VERSIONINFO
207
-
FILEVERSION 7,1,0,1
208
-
PRODUCTVERSION 7,1,0,1
207
+
FILEVERSION 7,1,0,2
208
+
PRODUCTVERSION 7,1,0,2
209
209
FILEFLAGSMASK 0x3L
210
210
#ifdef _DEBUG
211
211
FILEFLAGS 0x1L
@@ -223,14 +223,14 @@ BEGIN
223
223
VALUE "Comments", "PostgreSQL ODBC driver\0"
224
224
VALUE "CompanyName", "Insight Distribution Systems\0"
225
225
VALUE "FileDescription", "PostgreSQL Driver\0"
226
-
VALUE "FileVersion", " 07.01.0001\0"
226
+
VALUE "FileVersion", " 07.01.0002\0"
227
227
VALUE "InternalName", "psqlodbc\0"
228
228
VALUE "LegalCopyright", "\0"
229
229
VALUE "LegalTrademarks", "ODBC(TM) is a trademark of Microsoft Corporation. Microsoft� is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0"
230
230
VALUE "OriginalFilename", "psqlodbc.dll\0"
231
231
VALUE "PrivateBuild", "\0"
232
232
VALUE "ProductName", "Microsoft Open Database Connectivity\0"
0 commit comments