1 | // Create a Statement object so we can submit |
2 | // SQL statements to the driver |
3 | Statement stmt = con.createStatement (); |
4 | // Submit a query, creating a ResultSet object |
5 | ResultSet rs = stmt.executeQuery (query); |
6 | // Display all columns and rows from the result set |
7 | dispResultSet (rs); // see later |
8 | // Close the result set |
9 | rs.close(); |
10 | // Close the statement and then the connection |
11 | stmt.close(); |
12 | con.close(); |
13 | } |