@@ -4,43 +4,34 @@ This is a release of MySQL Connector/C++, Oracle's
4
4
dual-license C++ API for connecting client applications
5
5
to MySQL.
6
6
7
- Copyright (c) 2008, 2012 , Oracle and/or its affiliates. All rights reserved.
7
+ Copyright (c) 2008, 2013 , Oracle and/or its affiliates. All rights reserved.
8
8
9
9
--------------------------------------------------------------------------------
10
10
11
11
Dear MySQL Users,
12
12
13
- A new GA (general availability) version of MySQL Connector/C++ has been made available: MySQL Connector/C++ 1.1.1 GA. The MySQL Connector/C++ provides a C++ API for
13
+ A new GA (general availability) version of MySQL Connector/C++ has been made available: MySQL Connector/C++ 1.1.2 GA. The MySQL Connector/C++ provides a C++ API for
14
14
connecting client applications to the MySQL Server 5.1 or newer. You can download the production release at:
15
15
16
16
http://dev.mysql.com/downloads/connector/cpp/1.1.html
17
17
18
18
The MySQL driver for C++ offers an easy to use API derived from JDBC 4.0. MySQL Workbench is using it successfully since years.
19
19
20
- The major changes in 1.1.1 are:
20
+ The major changes in 1.1.2 are:
21
21
22
- - DatabaseMetaData::getSQLKeywords() updated to match MySQL 5.5. Note
23
- that C/C++, just like C/JDBC, returns the same list for every
24
- MySQL database version. (Ulf)
22
+ - Expired password support. Connection options
23
+ OPT_CAN_HANDLE_EXPIRED_PASSWORDS(bool, application can deal with expired
24
+ passwords), and preInit(string, commands to run prior to driver
25
+ initialization commands) have been introduced. (Bug#15936764/67325)
25
26
26
- - Added MySQL_Connection::getLastStatementInfo() which returns back the
27
- value of the mysql_info() function of libmysql / Connector/C. (Andrey)
27
+ - postInit connection string has been introduced. Similar to preInit, but
28
+ commands are run after driver's initialization.
28
29
29
- - Added new method ResultSetMetaData::isNumeric() and implemented it in
30
- all classes that subclass from it. (Andrey)
30
+ - Statement::executeUpdate can now execute multiple statements.
31
+ CLIENT_MULTI_STATEMENTS connection option still has to be selected.
32
+ getUpdateCount will return data for the last executed statement.
31
33
32
- - Fixed the bug causing compilation errors in Microsoft Visual Studio 2010 if
33
- stdint.h was included. See http://bugs.mysql.com/bug.php?id=60307
34
-
35
- - Fixed bug making statement that did not raise any warning to return
36
- warnings from previously executed statement.
37
-
38
- - Fixed stores(Lower|Mixed)Case(Quoted)Identifiers methods.
39
-
40
- - URI format has been extended to better fit IPv6 addresses. You now can use [] to separate hohst part of the uri.
41
-
42
- - Built against libmysql 5.5.27 enabling support of authentification plugins
43
- and IPv6.
34
+ - Built against libmysql 5.6.10
44
35
45
36
You can find further details, including usages examples, in the documentation at:
46
37
0 commit comments