I have JDBC connection code similiar to the following from the Java JDBC tutorial:
public static void viewTable(Connection con) throws SQLException {
Statement stmt = null;
String query = "select COF_NAME, SUP_ID, PRICE, SALES, TOTAL from " + dbName + ".COFFEES";
try {
stmt = con.createStatement();
ResultSet rs = stmt.executeQuery(query);
while (rs.next()) {
String coffeeName = rs.getString("COF_NAME");
int supplierID = rs.getInt("SUP_ID");
float price = rs.getFloat("PRICE");
int sales = rs.getInt("SALES");
int total = rs.getInt("TOTAL");
System.out.println(coffeeName + "\t" + supplierID + "\t" + price + "\t" + sales + "\t" + total);
}
} catch (SQLException e ) {
JDBCTutorialUtilities.printSQLException(e);
} finally {
stmt.close();
}
}
My problem with this way of handling to connection is that it closes the statement in the finally block and the method throws any SQLException that may occur. I don't want to do that, because I want any problems handled within this class. However, I do want that Statement#close() call in the finally block so that it is always closed.
Right now I'm placing this code in a separate method that returns a HashMap of the fields returned to that the exception is handled in-class. Is there another, possibly better way to handle this?
EDIT: The close() SQLException is the one I am concerned with. If possible I'd like to handle that within the method. I could write a try/catch in the finally, but that seems really awkward.
My problem with this way of handling to connection is that it closes the statement in the finally block and the method throws any SQLException that may occur. I don't want to do that, because I want any problems handled within this class. However, I do want that Statement#close() call in the finally block so that it is always closed.– Buhake Sindi Nov 16 '10 at 15:04.close()call (if that can even throw one). I think that code is already very close to what you want, but your question is not really clear. – Pointy Nov 16 '10 at 15:05