File mysql-connector-cpp.changes of Package mysql-connector-cpp
1
-------------------------------------------------------------------
2
Wed Jan 18 13:04:42 UTC 2012 - cdenicolo@suse.com
3
4
- license update: SUSE-GPL-2.0-with-FLOSS-exception
5
GPL has FLOSS exception.
6
7
-------------------------------------------------------------------
8
Thu Jan 12 11:30:48 UTC 2012 - coolo@suse.com
9
10
- change license to be in spdx.org format
11
12
-------------------------------------------------------------------
13
Thu Jun 2 16:22:02 CEST 2011 - mhrusecky@suse.cz
14
15
- updated to version 1.1.0, see
16
http://forge.mysql.com/wiki/Connector_C%2B%2B#MySQL_Connector.2FC.2B.2B_1.1.0_GA_.2813.09.2010.29
17
18
-------------------------------------------------------------------
19
Tue Nov 3 19:09:32 UTC 2009 - coolo@novell.com
20
21
- updated patches to apply with fuzz=0
22
23
-------------------------------------------------------------------
24
Tue Jul 28 13:39:59 CEST 2009 - mhrusecky@suse.cz
25
26
- Better description (bnc#522682)
27
28
-------------------------------------------------------------------
29
Thu May 21 17:37:01 CEST 2009 - mhrusecky@suse.cz
30
31
- updated to version 1.0.5
32
* Changed the interface of sql::ConnectionMetaData, sql::ResultSetMetaData
33
and sql::ParameterMetaData to have a protected destructor. In this way the
34
client code doesn't need, and won't be able, to destruct the metadata
35
objects returned by the connector. The connector will handle their
36
destruction. This enables statements like :
37
connection->getMetaData->getSchema(); without the result of leaking memory
38
because we lost the pointer returned by getMetaData(). (Lawrin, Andrey)
39
* Large overhaul of the code to improve the memory management to not leak in
40
exceptional situations. Big improvement compared to Beta1. (Andrey)
41
* Fixed the interface of sql::Driver and sql::Connection so they accept the
42
options map by alias instead of by value. (Andrey)
43
* Changed the return type of sql::SQLException::getSQLState() from
44
std::string to const char * to be consistent with std::exception::what().
45
(Andrey)
46
* Implemented getResultSetType() and setResultSetType() for Statement. Used
47
are TYPE_FORWARD_ONLY, which means unbuffered result set and
48
TYPE_SCROLL_INSENSITIVE, which means buffered result set. (Andrey)
49
* Implemented getResultSetType() for PreparedStatement. The setter is not
50
implemented because currently PreparedStatement can't do refetching and
51
storing the result means the bind buffers will be correct. (Andrey)
52
* Added "defaultStatementResultType" to MySQL_Connection::setClientOption()
53
as an option. Also the method now returns `sql::Connection *`. (Andrey)
54
* Added Result::getType() and implemented it in the three result set classes.
55
(Andrey)
56
* Enabled tracing functionality when building with VC8 and up (VS2005 and
57
up). (Andrey)
58
* Added better support for named pipes, on Windows. Use pipe:// and add the
59
path to the pipe. Shared memory connections are currently not supported.
60
(Andrey)
61
* Fixed a bug in MySQL_Connection::setSessionVariable() which led to
62
exception being thrown. (Andrey)
63
64
-------------------------------------------------------------------
65
Mon May 18 14:00:33 CEST 2009 - mhrusecky@suse.cz
66
67
- fixed compilation using gcc44
68
69
-------------------------------------------------------------------
70
Fri Apr 17 19:57:19 CEST 2009 - mhrusecky@suse.cz
71
72
- initial version of MySQL Connector/C++ package (version 1.0.4 beta)
73
74