

Before Java 6, we have to load the driver explicitly by this statement:Ĭlass.forName(".jdbc.Driver") However that statement is no longer needed, thanks to new update in JDBC 4.0 comes from Java 6. No need to load MySQL driver class explicitlyThe Connector/J version 8.0 library comes with a JDBC driver class: .jdbc.Driver. You can use newer version of JDBC driver for MySQL.If your Java project based on Maven, you just need to declare the following dependency in the pom.xml file: Copy this file into your project and make it available in your program’s classpath. But only one file we need is the JAR file mysql-connector-java-VERSION.jar. The distribution includes a binary JAR file, source code, documentation and license files. Extract the ZIP file to a desired location on your computer. Click the Download button next to Platform Independent (Architecture Independent), ZIP Archive to download a zip archive. The latest version 8.0 supports JDBC 4.2 and JDK 8 or higher. MySQL Connector/J comes into 2 major versions: 5.1 and 8.0. Browse this URL: download the latest version of the JDBC driver for MySQL called Connector/J. Download JDBC driver for MySQLFirst, in order to have Java program working with MySQL, we need a JDBC driver for MySQL. Java code example connects to MySQL database 1. Understand the getConnection() method of DriverManager classĤ. No need to load MySQL driver class explicitlyģ. If you have never written Java code to connect MySQL before, it’s worth reading this tutorial from the beginning.Table of content:Ģ. If you just want to see the code example, click on Code example: a simple program connects to MySQL.

This article explains how to write Java code to connect to a MySQL database server, step by step.
