Hi There,
It's me again. Can some one show me a code sample of Manual Result Set
Manipulation?
Thanx,
Dinesh, S.
I got this code from the DBTagLib Documentation, titled "disable looping"
under ResultSet.
<sql:statement id="stmt1" conn="conn1">
<sql:query>
select id, name, description from test_books
order by 1
</sql:query>
<%-- disable looping in resultset tag --%>
<sql:resultSet id="rset2" loo p="false">
<%
ResultSet rset = (ResultSet) pageContext.getAttribute("rset2");
// manual result set manipulation here
%>
</sql:resultSet>
</sql:statement>
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets