Java JDBC ResultSet Example (original) (raw)

In this example, we are going to demonstrate how to use Java JDBC ResultSet in order to get and manipulate data from a database. ResultSet is essentially a table, which contains all the information that should be returned from a specific query, as well as some essential metadata.

You can also check this tutorial in the following video:

Java JDBC Tutorial – video

1. Why we use ResultSet interface

A ResultSet is a table of data representing a database result set, which is usually generated by executing a statement that queries the database. A ResultSet object maintains a cursor pointing to its current row of data, initially positioned before the first row. The ResultSet interface provides getter methods for retrieving column values from the current row. Values can be retrieved using the column name or the index number of the column. The usual syntax to get a ResultSet is as shown below:

Connection conn = DriverManager.getConnection(database specific URL); Statement stmt = conn.createStatement(resultSetType, resultSetConcurrency, resultSetHoldability); ResultSet rSet = stmt.executeQuery("query to execute passed as String"); while(rSet.next()){ // Fetch the results and perform operations ... }

A ResultSet is obtained after executing a query. Connection and Statement will need to be created before execution.

As shown above, the attributes that are set while creating a ResultSet are:

  1. Type (resultSetType): This indicates how a cursor in a result set can iterate. Possible values are TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, TYPE_SCROLL_SENSITIVE.
  2. Concurrency (resultSetConcurrency): This indicates a constant for concurrency mode and can take these values – CONCUR_READ_ONLY, CONCUR_UPDATABLE.
  3. Holdability (resultSetHoldability): To indicate whether cursor to hold or close after commit. Possible values are CLOSE_CURSORS_AT_COMMIT, HOLD_CURSORS_OVER_COMMIT.

2. Categories in ResultSet

ResultSet has methods that can be categorized under 3 categories:

3. Technologies used

For the purposes of this article, we are going to assume that the database in use is MySQL, since it is one of the most well-known and beginner-friendly databases out there. In general, we are using:

4. Creating a new project and adding the driver to the build path

First of all download the JDBC driver needed for your database. In our case, you will need the MySQL Connector, which can be found and downloaded here. Select the Platform Independent option, and download the zip file which contains, among others, the MySQL Connector jar file which will be added in the build path. Right now, the official version which will be downloaded will contain the mysql-connector-java-5.1.31-bin file (which is the file that should be added to the project).

java ResultSet - when you try to download MySQL Connector.

The page that you should see, when you try to download MySQL Connector.

Afterwards, you need to create a new Eclipse project and add the connector to the build path, by right-clicking on the project -> Build Path -> Add External Archives, as shown in the image below:

java ResultSet - eclipse-buildpath

The path you should follow to add the jar, as instructed above.

After that, you can see that the jar is added in the build path under the Referenced Libraries section, in the project structure.

There are certain steps to be taken in order to use ResultSet in Java:

  1. Load the MySQL driver to your program.
  2. Create a Connection to the database.
  3. Make a query using a Statement.
  4. Get the ResultSet and manipulate the data as needed.

For this example, we assume that we have a local database running, named “albums“, which contains a table named “the_classics”. The table contains the following:

name artist year
The Black Album Metallica 1991
The White Album The Beatles 1968
Rock in Rio Iron Maiden 2001

Let’s get to the code then!

ResultSetExample.java

0102030405060708091011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;public class ResultSetExample { public static void main(String[] args) { String username = "myusername"; String password = "mypassword"; String databaseName = "albums"; Connection connect = null; Statement statement = null; try { Class.forName("com.mysql.jdbc.Driver"); connect = DriverManager.getConnection("jdbc:mysql://localhost/" + databaseName + "?" + "user=" + username + "&password=" + password); statement = connect.createStatement(); String query = "SELECT * FROM the_classics ORDER BY year"; ResultSet resultSet = statement.executeQuery(query); while (resultSet.next()) { System.out.println("Printing result..."); String albumName = resultSet.getString("name"); String artist = resultSet.getString("artist"); int year = resultSet.getInt("year"); System.out.println("\tAlbum: " + albumName + ", by Artist: " + artist + ", released in: " + year); } } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (SQLException e) { e.printStackTrace(); } finally { try { statement.close(); } catch (SQLException e) { e.printStackTrace(); } try { connect.close(); } catch (SQLException e) { e.printStackTrace(); } } }}

Output

123456 Printing result... Album: The White Album, by Artist: The Beatles, released in: 1968Printing result... Album: The Black Album, by Artist: Metallica, released in: 1991Printing result... Album: Rock in Rio, by Artist: Iron Maiden, released in: 2001

As stated above, the ResultSet class has different methods for acquiring different kinds of data, depending on the column type in the table. It is very important to know what kind of data you want to retrieve, because, in case of a mismatch, an exception will be thrown. For example, in the above code, if we change this line:

1 String albumName = resultSet.getString("name");

to this:

1 int albumName = resultSet.getInt("name");

we will immediately get an exception when we try to retrieve the first result.

123456789 Printing result...java.sql.SQLException: Invalid value for getInt() - 'The White Album' at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1094) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:997) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:983) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:928) at com.mysql.jdbc.ResultSetImpl.getInt(ResultSetImpl.java:2821) at com.mysql.jdbc.ResultSetImpl.getInt(ResultSetImpl.java:2846) at ResultSetExample.main(ResultSetExample.java:51)

Generally, you need to be sure about the data types and use the right method. Some of the most common MySQL – Java relations are these:

In some cases, you can use the getString(columnName) method to get the String representation of numbers, like Integer or Float, but this course of action is better to be avoided.

6. Download the source code

This was an example of how to use JDBC ResultSet in Java.

Last updated on Jul. 06th, 2020

Photo of Ilias Koutsakis

Ilias has graduated from the Department of Informatics and Telecommunications of the National and Kapodistrian University of Athens. He is interested in all aspects of software engineering, particularly data mining, and loves the challenge of working with new technologies. He is pursuing the dream of clean and readable code on a daily basis.