Diego Dupin 0dc7feef16 [misc] Fix test data inconsistencies and align expected type info.
Renamed variables and reordered type info arrays in `DatabaseMetadataTest` to ensure consistency with database changes. Adjusted table and procedure names in `ProcedureParameterTest` to reflect proper usage and avoid conflicts. These changes improve clarity and maintain test accuracy.
2025-05-21 19:01:12 +02:00
2015-01-30 14:19:04 +01:00
2025-03-02 16:31:05 +01:00
2024-06-19 14:27:39 +02:00
2025-05-19 17:46:25 +02:00
2025-03-31 19:48:42 +02:00
2025-03-27 01:49:08 +01:00

mariadb logo

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 distributed under the LGPL license version 2.1 or later (LGPL-2.1-or-later)

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.5.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>3.5.4-SNAPSHOT</version>
	</dependency>
</dependencies>

Documentation

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

Contributors

A big thanks to all contributors

Description
MariaDB Connector/J is used to connect applications developed in Java to MariaDB and MySQL databases. MariaDB Connector/J is LGPL licensed.
Readme LGPL-2.1 26 MiB
Languages
Java 100%