Skip to content

Commit 289edd6

Browse files
committed
Updated version to 1.1.6, updated ANNOUNCEMENT text
1 parent cf51692 commit 289edd6

File tree

2 files changed

+28
-64
lines changed

2 files changed

+28
-64
lines changed

ANNOUNCEMENT

Lines changed: 27 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -4,85 +4,49 @@ This is a release of MySQL Connector/C++, Oracle's
44
dual-license C++ API for connecting client applications
55
to MySQL.
66

7-
Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved.
7+
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
88

99
--------------------------------------------------------------------------------
1010

1111
Dear MySQL Users,
1212

13-
A new GA (general availability) version of MySQL Connector/C++ has been made available: MySQL Connector/C++ 1.1.5 GA. The MySQL Connector/C++ provides a C++ API for
14-
connecting client applications to the MySQL Server 5.5 or newer. You can download the production release at:
13+
A new GA (general availability) version of MySQL Connector/C++ has
14+
been made available: MySQL Connector/C++ 1.1.6 GA. The MySQL
15+
Connector/C++ provides a C++ API for connecting client applications to
16+
the MySQL Server 5.5 or newer. You can download the production release
17+
at:
1518

1619
http://dev.mysql.com/downloads/connector/cpp/1.1.html
1720

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.
21+
The MySQL driver for C++ offers an easy to use API derived from JDBC
22+
4.0. MySQL Workbench is using it successfully since years.
1923

20-
The major changes in 1.1.5 are:
24+
The major changes in 1.1.6 are:
2125

22-
Functionality Added or Changed
26+
option was specified and the MySQL installation path
27+
contained the characters -m. Installation failed if the
28+
build directory was not in the top source directory. (Bug
29+
#73502, Bug #19447498)
2330

24-
* MySQL_Prepared_Statement::getMoreResults() functionality
25-
has been implemented, so multiple result sets now can be
26-
fetched using a prepared statement. (Bug #19147677)
31+
* For prepared statements, getString() did not return the
32+
fractional seconds part from temporal columns that had a
33+
fractional sections part. (Bug #68523, Bug #17218692)
2734

28-
* The following connection options have been implemented:
29-
MYSQL_DEFAULT_AUTH, MYSQL_OPT_CONNECT_ATTR_DELETE,
30-
MYSQL_OPT_CONNECT_ATTR_RESET, MYSQL_OPT_LOCAL_INFILE,
31-
MYSQL_PLUGIN_DIR, MYSQL_READ_DEFAULT_FILE,
32-
MYSQL_READ_DEFAULT_GROUP, MYSQL_SET_CHARSET_DIR, and
33-
max_statement_timeout for session-based query timeout.
34-
(Bug #73665, Bug #19479950)
35+
* For queries of the form SELECT MAX(bit_col) FROM
36+
table_with_bit_col, getString() returned an incorrect
37+
result. (Bug #66235, Bug #14520822)
3538

36-
* These functions were added: Connection::isValid() checks
37-
whether the connection is alive, and
38-
Connection::reconnect() reconnects if the connection has
39-
gone down. (Bug #65640, Bug #14207722)
39+
* For Connector/C++ builds from source, make install failed
40+
if only the static library had been built without the
41+
dynamic library. (Bug #52281, Bug #11759926)
4042

41-
Bugs Fixed
42-
43-
* Several metadata flaws were corrected:
44-
45-
+ getTables() did not return a correct result when
46-
TableType=VIEW and metadataUseInfoSchema=false.
47-
48-
+ getColumns() did not return column inforomation when
49-
metadataUseInfoSchema=TRUE.
50-
51-
+ getColumnName() returned the display name instead of
52-
the actual column name.
53-
54-
+ getProcedures() returned a syntax error when
55-
metadataUseInfoSchema=false.
56-
(Bug #19505348, Bug #19147897, Bug #19244736, Bug
57-
#19505421)
58-
59-
* CMake did not pick up the libmysqlclient path from the
60-
MYSQL_LIB_DIR option. (Bug #19370844)
61-
62-
* driver/version_info.h (containing version macros) was not
63-
included in the installed header files. (Bug #73795, Bug
64-
#19553971)
65-
66-
* CMake could misconfigure the link flags. (Bug #73427, Bug
67-
#19315635)
68-
69-
* With the result set type set to TYPE_FORWARD_ONLY,
70-
Statement::executeQuery() returns almost immediately, but
71-
MySQL_ResultSet::next() and
72-
MySQL_Prepared_ResultSet::next() returned false if the
73-
connection was lost rather than throwing an exception,
74-
making it impossible to distinguish loss of connection
75-
from normal end of the result set.
76-
MySQL_ResultSet::next() and
77-
MySQL_Prepared_ResultSet::next() now throw an exception
78-
when the connection is lost. (Bug #69031, Bug #18886278)
79-
80-
You can find further details, including usages examples, in the documentation at:
43+
You can find further details, including usages examples, in the
44+
documentation at:
8145

8246
http://dev.mysql.com/doc/en/connector-cpp.html
8347

84-
85-
You may also want to contribute to the MySQL Forum on C/C++ at http://forums.mysql.com/list.php?167 or join the MySQL Connector/C++ mailing list
86-
http://lists.mysql.com/connector-cplusplus .
48+
You may also want to contribute to the MySQL Forum on C/C++ at
49+
http://forums.mysql.com/list.php?167 or join the MySQL Connector/C++
50+
mailing list http://lists.mysql.com/connector-cplusplus .
8751

8852
Enjoy!

VersionInfo.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
SET(CONNECTOR_MAJOR "1")
2626
SET(CONNECTOR_MINOR "1")
27-
SET(CONNECTOR_PATCH "5")
27+
SET(CONNECTOR_PATCH "6")
2828
SET(CONNECTOR_LEVEL "") # "-alpha", "-beta", empty if GA
2929
SET(CONNECTOR_QUALITY "GA")
3030

0 commit comments

Comments
 (0)