MySQL JDBC

Java JDBC provides a standard interface to interact with any relational databases. In this tutorial series, you will learn how to use the MySQL JDBC Connector to connect Java programs to MySQL databases.

What you’ll learn

  • Overview of JDBC
  • Setting up MySQL JDBC environment
  • Perform common database operations including selecting, inserting, updating, and deleting data.
  • Transactions
  • Calling stored procedures
  • Working with BLOB data

Prerequisite

Section 1. Getting Started

Section 2. CRUD

Section 3. Transaction

  • MySQL JDBC Transaction – Learn how to use commit() and rollback() methods of the Connection object to control transactions.

Section 4. Calling MySQL Stored Procedures

Section 5. Working with BLOB