MariaDB Java Client 1.1.0 Release Notes

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

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

  • Consistent, compatible with ConnectorJ handling of JDBC catalogs vs schemas vs databases. All DatabaseMetaData methods that return catalog or schema name, or accept catalog or schema as input parameter, will handle catalog input parameter as database name, and will return current database name in the "TABLE_CAT" column and null for "TABLE_SCHEM" column. This handling is consistent with ConnectorJ handling for catalogs. Here is the list of affected methods :
    • DatabaseMetaData.getTables()
    • DatabaseMetaData.getColumns()
    • DatabaseMetaData.getColumnPrivileges()
    • DatabaseMetaData.getTablePrivileges()
    • DatabaseMetaData.getPrimaryKeys()
    • DatabaseMetaData.getImportedKeys()
    • DatabaseMetaData.getExportedKeys()
    • DatabaseMetaData.getCrossReference()
    • DatabaseMetaData.getIndexInfo()
    • ResultSetMetaData.getCatalogName() will now return current database name
    • ResultSetMetaData.getSchemaName() will return an empty string.

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.