Skip to content

Latest commit

 

History

History
63 lines (49 loc) · 2.61 KB

README.md

File metadata and controls

63 lines (49 loc) · 2.61 KB

mariadb-connector-j

Fork Differences: This for was made to fix several issues that exist in the current branch. Some of them are race conditions which will prevent apps from being able to run for extended periods of time. Others are race conditions which may exhibit themselves in unexpected behavior. These fixes were used using the threadly project (https://github.com/threadly/threadly), so equievelent changes will need to be re-made before we can pull request these changes to the parent project. This also includes some performance improvements, some of which can be pull requested back, others because of the threadly usage will not be able to be returned to the project.

MariaDB Connector/J is used to connect applications developed in Java to MariaDB and MySQL databases. MariaDB Connector/J is LGPL licensed.

Tracker link https://mariadb.atlassian.net/projects/CONJ/issues/

Status

Build Status

Obtaining the driver

The driver (jar) can be downloaded from mariadb connector download

or maven :

<dependency>
	<groupId>org.mariadb.jdbc</groupId>
	<artifactId>mariadb-java-client</artifactId>
	<version>1.3.3</version>
</dependency>

Development snapshot are available on sonatype nexus repository

<repositories>
    <repository>
        <id>sonatype-nexus-snapshots</id>
        <name>Sonatype Nexus Snapshots</name>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>org.mariadb.jdbc</groupId>
        <artifactId>mariadb-java-client</artifactId>
        <version>1.3.4-SNAPSHOT</version>
    </dependency>
</dependencies>

Documentation

For a Getting started guide, API docs, recipes, etc. see the

Contributing

To get started with a development installation and learn more about contributing, please follow the instructions at our Developers Guide.