%@ include file="setupcache.jsp" %> <%@ page import="java.sql.*, javax.sql.*, oracle.jdbc.pool.*" %>
<% try { Connection conn = cods.getConnection(); Statement stmt = conn.createStatement (); ResultSet rset = stmt.executeQuery ("SELECT ename, sal " + "FROM scott.emp ORDER BY ename"); if (rset.next()) { %>
| Employee Name | Salary |
|---|---|
| <%= rset.getString(1) %> | $<%= rset.getDouble(2) %> |
| <%= rset.getString(1) %> | $<%= rset.getDouble(2) %> |
Sorry, the query returned no rows!
<% } rset.close(); stmt.close(); conn.close(); // Put the Connection Back into the Pool } catch (SQLException e) { out.println("" + "There was an error doing the query:"); out.println ("
" + e + "\n
"); } %>