1 | catch (java.lang.Exception ex) { |
2 | // Got some other type of exception. Dump it. |
3 | ex.printStackTrace (); |
4 | } |
5 | } |
6 | } // End Main |
7 | // dispResultSet |
8 | // Displays all columns and rows in the given result set |
9 | private static void dispResultSet (ResultSet rs) |
10 | throws SQLException |
11 | { |
12 | //Display routine for displaying the result set goes here |
13 | } |
14 | } // End simpleselect |