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 show 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 = "root";
private static final String PASSWORD = "";
public static void main(String[] args) {
try (Connection conn =
DriverManager.getConnection(URL, USERNAME, PASSWORD);
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT * FROM products")) {
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.0.32</version>
</dependency>
Latest posts by Wayan (see all)
- How do I split large excel file into multiple smaller files? - April 15, 2023
- How do I get the number of processors available to the JVM? - March 29, 2023
- How do I show Spring transaction in log / console? - March 29, 2023