MariaDB Java Client 1.1.4 Release Notes

You are viewing an old version of this article. View the current version here.

Download | Release Notes | Changelog | Java Client Overview

Release date: 10 Sept 2013

MariaDB Java Client 1.1.4 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.

New functionality

  • It is now possible to connect to server via Unix domain sockets (on Unix platforms), or shared memory (Windows) . For domain socket connections, add "localSocket=<socket_path>" to the connection URL. For shared memory connections, add "sharedMemory=<shared_memory_base_name>". shared memory and unix domain socket support is implemented using Java Native Access (JNA) library, and this means that application that uses these features will need jna.jar and jna-platform.jar need to be present in the classpath at runtime (CONJ-50, CONJ-51) . More information about JNA project can be found here https://github.com/twall/jna

Bugs fixed in this release

Some of the bugs fixed include the following:

  • ResultSet.getTimestamp() did not work with TIME columns (CONJ-54)
  • DatabaseMetaData.getDatabaseMinorVersion() incorrectly returned major version instead of minor
  • DatabaseMetaData will now return correct information about case senstivity handling, dependent on lower_case_table_names parameter
    • supportsMixedCaseIdentifiers(),supportsMixedCaseQuotedIdentifiers() will return true if lower_case_table_names is 0 (case-sensitive)
    • storesLowerCaseIdentifiers(),storesLowerCaseQuotedIdentifiers() will return true if lower_case_table_names is 1 ( case-insensitive, lowercase conversion)
    • storesMixedCase[Identifiers(),storesMixedCaseQuotedIdentifiers() will returns true if lower_case_table_names is 2 (case-insensitive, but case-preserving)

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.