Skip to content

Latest commit

 

History

History

part1

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

JDBC Quickstart - Part 1 (database connections)

This Maven project shows the minimal configuration needed to connect to MariaDB databases using Java Database Connectivity (JDBC) without any other persistence frameworks.

TL;DR

Add the JDBC Driver (check the latest version):

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

Open the connection (alternatively use try with resources to close the connection automatically):

Connection connection = DriverManager.getConnection(
        "jdbc:mariadb://localhost:3306/database_name",
        "user", "Password123!"
);

Close the connection (if not using a try with resources block):

connection.close();

Requirements

  • Java 21 or later. Previous versions should work (update the version in the pom.xml file).
  • Apache Maven.
  • MariaDB server.
  • An SQL client tool like mariadb, DBeaver, or an SQL integration for your IDE.

Preparing the database

See the instructions here.

Running the app

Run the following from the command line:

git clone [email protected]:mariadb-developers/java-quickstart.git
cd java-quickstart/jdbc/part1/
mvn package
java -jar target/jdbc-demo-1.0-SNAPSHOT.jar

Screenshot of the output:

Output

Tutorial

Read the tutorial or watch the video for detailed steps on how to implement this example from scratch:

JDBC Tutorial part 1/3 – Database connections