catch (java.lang.Exception ex) { |
// Got some other type of exception. Dump it. |
ex.printStackTrace (); |
} |
} |
} // End Main |
// dispResultSet |
// Displays all columns and rows in the given result set |
private static void dispResultSet (ResultSet rs) |
throws SQLException |
{ |
//Display routine for displaying the result set goes here |
} |
} // End simpleselect |