Posted By:
Scott_Decosta
Posted On:
Thursday, May 17, 2001 02:11 PM
Hi there When I try to connect my JSP to my database thru a bean and fetch data from Result set I am getting exception.. My JSP code is like this.. <%@ page import ="tryBean" %> <% String eid=request.getParameter("param1"); tb.setConnection(); ResultSet rs1 = tb.getResultSet(eid); String lname= rs1.getString("lastname"); String fname= rs1.getString("firstname"); String ext = rs1.getString("extension"); String city= rs1.getString("cityofresidence"); String dept= rs1.getString("dept"); %> ----- and in my bean I try to con
More>>
Hi there
When I try to connect my JSP to my database thru a bean and fetch data from Result set I am getting exception..
My JSP code is like this..
<%@ page import ="tryBean" %>