2013.02.05

MySQL

MySQL Connector/ODBC 5.2.4が利用可能です

オリジナル版:http://lists.mysql.com/announce/822

MySQLデータベース管理システム用ODBCドライバの新バージョンである、MySQL Connector/ODBC 5.2.4がリリースされました。

現在では同じモダンなコードベースのUnicodeドライバとANSIドライバの両方を含めてダウンロード可能です。アプリケーションのタイプに応じてUnicodeとANSIの必要なドライバタイプを選択してください。サーバサイドのプリペアードステートメントはデフォルトで利用可能です。ドライバは、MySQLサーバ 4.1以降のすべてのバージョンの使用に適応しています。(4.0あるいはそれ以前のリリースでは動作しないかもしれません)。

このリリースはミラーサイトのダウンロード・ページから、ソースとバイナリで現在利用可能です。

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

インストールに関する情報については、ドキュメントを参照してください

http://dev.mysql.com/doc/refman/5.5/en/connector-odbc-installation.html

バグレポート、バグ修正、パッチ等の情報をお待ちしておりますので、以下のページをご利用ください。

http://forge.mysql.com/wiki/Contributing

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

   This release fixes any bugs encountered since Connector/ODBC
   5.2.3. Its main focus is on compatibility with the latest features
   of MySQL 5.6.

   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

     * 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)