MySQL Forums
Forum List  »  Announcements

MySQL Connector/ODBC 5.1.12 has been released
Posted by: Kent Boortz
Date: February 05, 2013 07:41AM

Dear MySQL users,

MySQL Connector/ODBC 5.1.12, a new version of the ODBC driver for the
MySQL database management system, has been released. This release is
the latest release of the 5.1 series and is suitable for use with any
MySQL version since 4.1 (It will not work with 4.0 or earlier
releases.).

The release is now available in source and binary form for a number of
platforms from our download pages at

http://dev.mysql.com/downloads/connector/odbc/5.1.html

and mirror sites. Note that not all mirror sites may be up to date at
this point in time, so if you can't find this version on some mirror,
please try again later or choose another download site.


Enjoy!

The MySQL build team at Oracle

==========
Changes in MySQL Connector/ODBC 5.1.12 (5 February, 2013)

   Functionality Added or Changed

     * The new connection option can_handle_exp_pwd indicates that
       your application includes error-handling logic to deal with
       the error code for an expired password. See Connector/ODBC
       Connection Parameters
       (http://dev.mysql.com/doc/refman/5.5/en/connector-odbc-configu
       ration-connection-parameters.html) for the details of this
       connection option and the associated SQL state and native
       error code. See ALTER USER Syntax
       (http://dev.mysql.com/doc/refman/5.6/en/alter-user.html) for
       details about password expiration for MySQL server accounts.
       This new option is added to the Windows GUI, through a
       checkbox Can Handle Expired Password on the Connection tab of
       the Details dialog.

     * The following reserved words were added to the list returned
       by the SQLGetInfo() ODBC function, for compatibility with the
       latest MySQL 5.6 syntax:

          + GET

          + IO_AFTER_GTIDS

          + IO_BEFORE_GTIDS

          + MASTER_BIND

          + ONE_SHOT

          + PARTITION

          + SQL_AFTER_GTIDS

          + SQL_BEFORE_GTIDS

   Bugs Fixed

     * The string returned by the SQLNativeSql function was not
       null-terminated as it should be. (Bug #14559721)

     * Specifying certain values for the CHARSET option in the
       connection string could cause a serious error when a query was
       executed. (Bug #14363601)

     * If multiple statements were called using the same statement
       handle, SQLColumns and possibly other catalog functions could
       return wrong results. Some field length values were not reset
       in the descriptor records. The issue occurred even if the
       statement handle was closed with SQL_CLOSE between the
       statements. (Bug #14338051)

     * If an application received a SIGPIPE signal, then another
       SIGPIPE signal immediately after (before the first signal
       handler was finished), the application could terminate rather
       than handling the second signal. (Bug #14303803)

     * Several catalog or info functions could raise an incorrect
       error String data, right truncated when only partial
       information was requested. For example, if the application
       called SQLDescribeCol(hstmt, ColNumber, ColName, BufferLen,
       ....), but did not want the column name (ColName == NULL and
       BufferLen == 0). SQL_SUCCESS_WITH_INFO could also be returned
       rather than the correct value SQL_SUCCESS. This issue affected
       many ADO, DAO, and other applications.
       Affected functions include:
Spurious error and incorrect return code:

SQLDescribeCol
SQLDescribeColA
SQLDescribeColW
SQLGetInfoA
SQLGetInfoW

Incorrect return code:

SQLColAttribute
SQLColAttributeW
SQLGetConnectAttr
SQLGetConnectAttrW
SQLGetCursorName
SQLGetCursorNameW
SQLGetInfo
SQLGetInfoW
SQLNativeSql
SQLNativeSqlW
       (Bug #14285620)

     * Calling the SQLTables function with a very long database or
       table name could cause a serious error. This fix allows the
       SQLTables function to accept database and table names with the
       maximum length of 64 characters. (Bug #14085211)

     * On a 64-bit system, calls to the SQLBindCol function using
       indicator variables (through the last parameter) could return
       incorrect results. (Bug #11766437, Bug #59541)

     * The symbols SQLInstallDriverEx, SQLInstallDriverExW, and
       SQLRemoveDriverW were exported, causing incompatibility with
       some commercial ODBC packages such as DataDirect ODBC, and
       making Connector/ODBC dependent on the unixODBC library
       libodbcinst.so.1. This issue was first observed in
       Connector/ODBC 5.1.8. (Bug #11766724, Bug #59900)

     * When a column with type TINYTEXT, TEXT, MEDIUMTEXT, or
       LONGTEXT was retrieved from a table with a binary collation,
       the text fields were converted to a hexadecimal
       representation, even though these values were not really
       BLOBs. The unnecessary conversion could expand the data,
       causing overflow problems when storing the result values. (Bug
       #11746572, Bug #27282)

Kent Boortz, Release Staff Engineer
Oracle, the MySQL team, www.mysql.com

Options: ReplyQuote


Subject
Views
Written By
Posted
MySQL Connector/ODBC 5.1.12 has been released
5406
February 05, 2013 07:41AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.