Internal change

PiperOrigin-RevId: 517952945
Change-Id: I152c004412fefc87f5d674256658fd7b88bf9950
366 files changed
tree: d4a2c7db853ee0c0e0a1efff7fff543aca408ceb
  1. .mvn/
  2. src/
  3. .java.policy
  4. .travis.yml
  5. bnd.bnd
  6. CHANGELOG.md
  7. CONTRIBUTING.md
  8. LICENSE
  9. pom.xml
  10. README.md
README.md

MariaDB java connector

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/

Status

Linux Build Maven Central License (LGPL version 2.1) codecov

Obtaining the driver

For java 8+ :

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

<dependency>
	<groupId>org.mariadb.jdbc</groupId>
	<artifactId>mariadb-java-client</artifactId>
	<version>3.1.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>3.1.3-SNAPSHOT</version>
    </dependency>
</dependencies>

Documentation

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