We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f5b1cf commit e50eb1cCopy full SHA for e50eb1c
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