Search
j0ke.net Open Build Service
>
Projects
>
internetx
:
mysql5
>
mysql-connector-cpp
> mysql-connector-cpp.changes
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File mysql-connector-cpp.changes of Package mysql-connector-cpp
------------------------------------------------------------------- Wed Jan 18 13:04:42 UTC 2012 - cdenicolo@suse.com - license update: SUSE-GPL-2.0-with-FLOSS-exception GPL has FLOSS exception. ------------------------------------------------------------------- Thu Jan 12 11:30:48 UTC 2012 - coolo@suse.com - change license to be in spdx.org format ------------------------------------------------------------------- Thu Jun 2 16:22:02 CEST 2011 - mhrusecky@suse.cz - updated to version 1.1.0, see http://forge.mysql.com/wiki/Connector_C%2B%2B#MySQL_Connector.2FC.2B.2B_1.1.0_GA_.2813.09.2010.29 ------------------------------------------------------------------- Tue Nov 3 19:09:32 UTC 2009 - coolo@novell.com - updated patches to apply with fuzz=0 ------------------------------------------------------------------- Tue Jul 28 13:39:59 CEST 2009 - mhrusecky@suse.cz - Better description (bnc#522682) ------------------------------------------------------------------- Thu May 21 17:37:01 CEST 2009 - mhrusecky@suse.cz - updated to version 1.0.5 * Changed the interface of sql::ConnectionMetaData, sql::ResultSetMetaData and sql::ParameterMetaData to have a protected destructor. In this way the client code doesn't need, and won't be able, to destruct the metadata objects returned by the connector. The connector will handle their destruction. This enables statements like : connection->getMetaData->getSchema(); without the result of leaking memory because we lost the pointer returned by getMetaData(). (Lawrin, Andrey) * Large overhaul of the code to improve the memory management to not leak in exceptional situations. Big improvement compared to Beta1. (Andrey) * Fixed the interface of sql::Driver and sql::Connection so they accept the options map by alias instead of by value. (Andrey) * Changed the return type of sql::SQLException::getSQLState() from std::string to const char * to be consistent with std::exception::what(). (Andrey) * Implemented getResultSetType() and setResultSetType() for Statement. Used are TYPE_FORWARD_ONLY, which means unbuffered result set and TYPE_SCROLL_INSENSITIVE, which means buffered result set. (Andrey) * Implemented getResultSetType() for PreparedStatement. The setter is not implemented because currently PreparedStatement can't do refetching and storing the result means the bind buffers will be correct. (Andrey) * Added "defaultStatementResultType" to MySQL_Connection::setClientOption() as an option. Also the method now returns `sql::Connection *`. (Andrey) * Added Result::getType() and implemented it in the three result set classes. (Andrey) * Enabled tracing functionality when building with VC8 and up (VS2005 and up). (Andrey) * Added better support for named pipes, on Windows. Use pipe:// and add the path to the pipe. Shared memory connections are currently not supported. (Andrey) * Fixed a bug in MySQL_Connection::setSessionVariable() which led to exception being thrown. (Andrey) ------------------------------------------------------------------- Mon May 18 14:00:33 CEST 2009 - mhrusecky@suse.cz - fixed compilation using gcc44 ------------------------------------------------------------------- Fri Apr 17 19:57:19 CEST 2009 - mhrusecky@suse.cz - initial version of MySQL Connector/C++ package (version 1.0.4 beta)