This section describes how to use getXXX() methods to retrieve column values from ResultSet objects.
Once you have moved the cursor to a data row in a ResultSet object, you can use one of the getXXX() methods to retrieve the value of a given column.
All getXXX() methods support two types of parameters to specify a column:
getXXX(int n) - Returns the value of column n. Column 1 is the first column in the ResultSet table.
getXXX(String name) - Returns the value of the column of the specified name.
JDBC supports many getXXX() methods, one for each Java data type, so that you can retrieve column values right into the desired Java data types
without any further conversion. Here is a list of getXXX() methods:
getByte() - Returns the value of the specified column as Java byte type.
getShort() - Returns the value of the specified column as Java short type.
getInt() - Returns the value of the specified column as Java int type.
getLong() - Returns the value of the specified column as Java long type.
getFloat() - Returns the value of the specified column as Java float type.
getDouble() - Returns the value of the specified column as Java double type.
getBigDecimal() - Returns the value of the specified column as java.sql.BigDecimal type.
getBoolean() - Returns the value of the specified column as Java boolean type.
getString() - Returns the value of the specified column as Java String type.
getBytes() - Returns the value of the specified column as Java byte[] type.
getDate() - Returns the value of the specified column as java.sql.Date type.
getTime() - Returns the value of the specified column as java.sql.Time type.
getTimestamp() - Returns the value of the specified column as java.sql.Timestamp type.
getAsciiStream() - Returns the value of the specified column as a stream of ASCII characters.
getUnicodeStream() - Returns the value of the specified column as a stream of Unicode characters.
getBinaryStream() - Returns the value of the specified column as a stream of bytes.
getClob() - Returns the value of the specified column as Java Clob type.
getBlob() - Returns the value of the specified column as Java Blob type.
getArray() - Returns the value of the specified column as Java Array type.
getRef() - Returns the value of the specified column as Java Ref type.
getCharacterStream() - Returns the value of the specified column as java.io.Reader type.
getObject() - Returns the value of the specified column as Java Object type.
The following sample Java program shows you how to use different getXXX() methods to retrieve column values
in different data types:
/**
* DerbyGetMethods.java
* Copyright (c) 2007 by Dr. Herong Yang. All rights reserved.
*/
import java.sql.*;
public class DerbyGetMethods {
public static void main(String [] args) {
Connection con = null;
try {
con = DriverManager.getConnection(
"jdbc:derby://localhost/TestDB");
Statement sta = con.createStatement();
// getting the data back
ResultSet res = sta.executeQuery("SELECT * FROM Profile");
System.out.println("List of Profiles: ");
while (res.next()) {
int id = res.getInt("ID");
String firstName = res.getString("FirstName");
String lastName = res.getString("LastName");
float points = res.getFloat("Point");
Date birthDate = res.getDate("BirthDate");
Timestamp modTime = res.getTimestamp("ModTime");
System.out.println(
" "+id
+ ", "+firstName
+ ", "+lastName
+ ", "+points
+ ", "+birthDate
+ ", "+modTime);
}
res.close();
sta.close();
con.close();
} catch (Exception e) {
System.err.println("Exception: "+e.getMessage());
}
}
}