Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix for a typo in defining the SQLLEN and SQLULEN data types on Win64. (__WIN64 should be just _WIN64.) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | bug-647ec7268f |
Files: | files | file ages | folders |
SHA3-256: |
0837f4e778a602f1691a3505fc077b32 |
User & Date: | kbk 2019-09-13 16:27:13.191 |
Context
2019-12-15
| ||
17:19 | Fix typo (__WIN64 -> _WIN64). Make tdbcodbc ready for the 9.0 era, in which string lengths can be >32bit check-in: 78e0a63cc6 user: jan.nijtmans tags: trunk | |
2019-09-13
| ||
16:27 | Fix for a typo in defining the SQLLEN and SQLULEN data types on Win64. (__WIN64 should be just _WIN64.) Closed-Leaf check-in: 0837f4e778 user: kbk tags: bug-647ec7268f | |
2019-08-30
| ||
14:52 | Make tdbcodbc work with C++ compiler. check-in: a233639b90 user: jan.nijtmans tags: trunk | |
Changes
Changes to generic/fakesql.h.
︙ | ︙ | |||
65 66 67 68 69 70 71 | typedef WCHAR SQLWCHAR; typedef SQLSMALLINT SQLRETURN; /* TODO - Check how the SQLLEN and SQLULEN types are handled on * 64-bit Unix. */ | | | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | typedef WCHAR SQLWCHAR; typedef SQLSMALLINT SQLRETURN; /* TODO - Check how the SQLLEN and SQLULEN types are handled on * 64-bit Unix. */ #if defined(_WIN64) typedef Tcl_WideInt SQLLEN; typedef Tcl_WideUInt SQLULEN; #else typedef SQLINTEGER SQLLEN; typedef SQLUINTEGER SQLULEN; #endif |
︙ | ︙ |