MariaDB java connector is a JDBC 4.2 compatible driver, used to connect applications developed in Java to MariaDB and MySQL databases. MariaDB Connector/J is LGPL licensed.
Tracker link https://jira.mariadb.org/projects/CONJ/issues/
Java version | driver compatible version |
---|---|
6 | up to 1.1.10 |
7 | up to 1.6.1 |
8 | all version |
The driver (jar) can be downloaded from mariadb connector download or maven :
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.0.2</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>2.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
For a Getting started guide, API docs, recipes, etc. see the
To get started with a development installation and learn more about contributing, please follow the instructions at our Developers Guide.