One thing that we need to do manually when programming using JDBC is to make sure to close all the resources that we use. All resources including the ResultSet
, Statement
and Connection
must be closed. This will usually produce a lot of boilerplate code in our program.
Starting from JDBC 4.1, which is a part of Java 7, we can use the try-with-resources
statement to automatically manage the resources that we use. This try statement closes the resources used when the block finishes its execution either normally or abruptly.
Here is an example that shows us how to use the try-with-resources
statement.
package org.kodejava.jdbc;
import java.sql.*;
public class TryWithResourceJdbc {
private static final String URL = "jdbc:mysql://localhost/kodejava";
private static final String USERNAME = "kodejava";
private static final String PASSWORD = "s3cr*t";
public static void main(String[] args) {
try (Connection conn =
DriverManager.getConnection(URL, USERNAME, PASSWORD);
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT * FROM product")) {
while (rs.next()) {
String code = rs.getString("code");
String name = rs.getString("name");
System.out.println("Code: " + code + "; Name: " + name);
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
Maven Dependencies
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.4.0</version>
</dependency>
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024