Install JDBC on Linux in 3 steps

Install JDBC on Linux in 3 steps
Seth Kenlon
Fri, 09/23/2022 – 03:00

When you write an application, it’s common to require data storage. Sometimes you’re storing assets your application needs to function, and other times you’re storing user data, including preferences and save data. One way to store data is in a database, and in order to communicate between your code and a database, you need a database binding or connector for your language. For Java, a common database connector is JDBC (Java database connectivity.)

1. Install Java

Of course, to develop with Java you must also have Java installed. I recommend SDKman for Linux, macOS, and WSL or Cygwin. For Windows, you can download OpenJDK from developers.redhat.com.

2. Install JDBC with Maven

JDBC is an API, imported into your code with the statement import java.sql.*, but for it to be useful you must have a database driver and a database installed for it to interact with. The database driver you use and the database you want to communicate with must match: to interact with MySQL, you need a MySQL driver, to interact with SQLite3, you must have the SQLite3 driver, and so on.

For this article, I use PostgreSQL, but all the major databases, including MariaDB and SQLite3, have JDBC drivers.

You can download JDBC for PostgreSQL from jdbc.postgresql.org. I use Maven to manage Java dependencies, so I include it in pom.xml (adjusting the version number for what’s current on Maven Central):

>
    >org.postgresql>
    >postgresql>
    >42.5.0>
>

3. Install the database

You have to install the database you want to connect to through JDBC. There are several very good open source databases, but I had to choose one for this article, so I chose PostgreSQL.

To install PostgreSQL on Linux, use your software repository. On Fedora, CentOS, Mageia, and similar:

$ sudo dnf install postgresql postgresql-server

On Debian, Linux Mint, Elementary, and similar:

$ sudo apt install postgresql postgresql-contrib

Database connectivity

If you’re not using PostgreSQL, the same general process applies:

  1. Install Java.

  2. Find the JDBC driver for your database of choice and include it in your pom.xml file.

  3. Install the database (server and client) on your development OS.

Three steps and you’re ready to start writing code.

Install Java, install JDBC with Maven, and install the database. Then you’re ready to interact with databases in your Java code.

What is your favorite open source Java IDE?

Pixabay. CC0.


Creative Commons License
This work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.

Powered by WPeMatico

Author: dasuberworm

Standing just over 2 meters and hailing from о́стров Ратма́нова, Dasuberworm is a professional cryptologist, entrepreneur and cage fighter. When he's not breaking cyphers and punching people in the face, Das enjoys receiving ominous DHL packages at one of his many drop sites in SE Asia.

Share This Post On