We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9cb3a75 + e50eb1c commit 7a526f0Copy full SHA for 7a526f0
NEWS
@@ -16,6 +16,10 @@ PHP NEWS
16
- FTP:
17
. Fixed bug #65667 (ftp_nb_continue produces segfault). (Philip Hofstetter)
18
19
+- ODBC
20
+ . Fixed bug #65950 (Field name truncation if the field name is bigger than
21
+ 32 characters). (patch submitted by: michael dot y at zend dot com, Yasuo)
22
+
23
- Sockets:
24
. Fixed bug #65808 (the socket_connect() won't work with IPv6 address).
25
(Mike)
ext/odbc/php_odbc_includes.h
@@ -232,7 +232,7 @@ typedef struct odbc_connection {
232
} odbc_connection;
233
234
typedef struct odbc_result_value {
235
- char name[32];
+ char name[256];
236
char *value;
237
SQLLEN vallen;
238
SQLLEN coltype;
0 commit comments