In our JDBC connection article we demonstrated how to connect your Java applications to standard SQL databases like Oracle, Informix, Sybase, and others using JDBC. In our examples we showed how to connect to two different databases -- Mini SQL (mSQL), and Interbase -- just so you can see how the code changes when you switch from one database to another.
In this "JDBC SELECT query" tutorial we'll take JDBC to the next step -- we'll show you how to create and execute a SQL SELECT statement in your Java code.
Our sample database
Before getting into our JDBC examples, it will help to to know what our database table looks like. In all of our examples, we're going to be accessing a database named Demo. In our JDBC query examples, we're going to be accessing a database table named Customers, that's contained in the Demo database.
Here's what the Customers database table looks like:
| Cnum | Lname | Salutation | City | Snum |
|---|---|---|---|---|
| 1001 | Simpson | Mr. | Springfield | 2001 |
| 1002 | MacBeal | Ms. | Boston | 2004 |
| 1003 | Flinstone | Mr. | Bedrock | 2003 |
| 1004 | Cramden | Mr. | New York | 2001 |
Table 1: Our sample Customers database table will contain these four sample records.
Today we'll show you that querying an SQL database with JDBC is often a simple three step process. The three steps are:
The hardest part of the process is defining the query you want to run, and then writing the code to read and manipulate the results of your SELECT query.
In today's example, we'll create a simple SQL query. We'll keep the statement simple, and we'll just say this:
select Lname from Customers where Snum = 2001;
This statement returns each Lname (last name) record from our Customers database where Snum (salesperson id-number) equals 2001. In plain English, you might say "give me the last name of every customer where the salesperson id-number is 2001".
Okay, now that we know the information we want to retrieve, how do we put this SQL statement into a Java program? It's actually very simple. Here's the JDBC code necessary to create and execute our query:
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT Lname FROM Customers WHERE Snum = 2001");
When we use JDBC, our query results are returned in a Java ResultSet object, so we first create the object rs to hold our results. This creates the object, but at this point no query has been defined. In the second statement (executeQuery) we specify the desired SQL query and send it to the SQL database.
After we execute our SQL query, how do we read the results? Fortunately, JDBC makes this pretty easy also. In many cases, you can just use the next() method of the ResultSet object. After the previous two lines, you might add a reading loop like this:
while (rs.next()) {
String lastName = rs.getString("Lname");
System.out.println(lastName + "\n");
}
This loop reads the last name returned in each record, and prints it to the screen using the normal System.out.println() method. In the case of our sample database, the printed results look like this:
Simpson Cramden
because these are the last names of the two customer records where Snum equals 2001.
Notice that in this example all we're doing is printing our results. In many JDBC applications, you'll probably want to do something else with the results, such as displaying them in a table or grid in a GUI applet or application.
The full source code for our example JDBC program (Query1.java) is shown in Listing 1.
// Query1.java: Query an mSQL database using JDBC. import java.sql.*;
/**
* A JDBC SELECT (JDBC query) example program.
*/
class Query1 {
public static void main (String[] args) {
try {
String url = "jdbc:msql://200.210.220.1:1114/Demo";
Connection conn = DriverManager.getConnection(url,"","");
Statement stmt = conn.createStatement();
ResultSet rs;
rs = stmt.executeQuery("SELECT Lname FROM Customers WHERE Snum = 2001");
while ( rs.next() ) {
String lastName = rs.getString("Lname");
System.out.println(lastName);
}
conn.close();
} catch (Exception e) {
System.err.println("Got an exception! ");
System.err.println(e.getMessage());
}
}
}
The source code for the Query1.java program shows how to query an SQL database for the information you want, using Java JDBC methods.
If you're interested, you can click here to download the source code for the Query1.java program. You can test this JDBC example code on your own system, but note that you'll need to change the lines where we create our url and conn objects to reflect your own database configuration.
Querying an SQL database with JDBC is a simple three step process, once you know how to do it. Just (1) create a ResultSet object, (2) execute the query, and then (3) read the results.
There is a *lot* of newer Java and JDBC content on my blog, including these JDBC tips:
Wrong code!
hi Alvin,
as from your code snippet...
ResultSet rs = conn.createStatement();
st.executeQuery("select Lname from Customers where Snum = 2001");
dont u think this code is never going to execute...it wont compile first of all
because conn.createStatement() returs a Statement and not a ResultSet.
you will get a ResultSet only at line no 2 when you do st.executeQuery(String sql).
let me know your thoughts!
Regards
Rakesh
Thanks - ResultSet/Statement code corrected
I will say thank you, you found an 11-year-old bug. The code in the complete class was correct, but the snippet of code I showed earlier was wrong, and I just corrected it. Thanks again!
JDBC select
Thank you for your "JDBC Select" example. It was very helpful to me in learning Java and JDBC.
Post new comment