I got a java.sql.ResultSet instance when I executed a query statement in the
Servlet. I want to
transfer the ResultSet instance to the JSP page to display the query result
without ScrpitLet mixed into the JSP page.
It seems that it is a better way to
convert the ResultSet instance to a javax.servlet.jsp.jstl.sql.Result object and access the Result object
in a <c:forEach>.How can I realize the convertion?
If it cannot be realized, is there any way by which JSP page could access ResultSet object without ScriptLet.
Please introduce the involved methods or
patterns.
Thanks!