MariaDB Java Client 1.1.0 Release Notes

The most recent Stable (GA) release of MariaDB Connector/J is:
MariaDB Connector/J 3.3.3

Download | Release Notes | Changelog

Release date: 15 Jan 2013

MariaDB Java Client 1.1.0 is a Stable (GA) release. In general this means that there are no known serious bugs, except for those marked as feature requests, that no bugs were fixed since last release that caused a notable code changes, and that we believe the code is ready for general usage (based on bug inflow).

For a description of the MariaDB Java Client see the About the MariaDB Java Client page.

For a list of changes made in this release, with links to detailed information on each push, see the changelog.

Here is a list of the important changes in this release

  • Handling of statement timeout is now fixed (CONJ-1) Prior implementation was based on socket timeouts and did not work well due to a Java bug (socket can't recover after a timeout)
  • Driver can be used in OSGi environments now - it includes OSGi-specific entries in MANIFEST.MF (CONJ-2)
  • Support dumpQueriesOnException=true in the JDBC URL (CONJ-12) . The effect of this parameter is such that query text is included into exception message. Additionally, query text is dumped on MySQL syntax errors, no matter if this parameter is set or not.
  • It is now possible to use IPv6 addresses with the connector using RFC2732 syntax with square brakets, for example jdbc:mysql:[::1]:3306 for IPv6-capable server running on local machine, port 3306 (CONJ-7)
  • SSL support. useSSL=true parameter is now functional. Additionally, trustServerCertificates=true can be set, to avoid checking server certificate validity.
  • sessionVariables driver URL parameter is now supported.
  • LOAD DATA LOCAL INFILE can use generic URLs (e.g http) for file specification
  • SQL Comments are not stripped anymore off PreparedStatements.
  • Fixed ArrayOutOfBounds exception when parsing JDBC (CONJ-4)
  • Fixed exception in Connection.getWarnings(), which was throws is connection was closed

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.