thanks to all list for the aid during these days.
the quite new question

<%
//elenco is a JSTL recordSet
Result rs = (Result)pageContext.findAttribute("elenco");
int max = rs.getRowCount();

for (int fRow = 0; fRow<= max; fRow++ ){
// out.print(rs.getRowsByIndex()[row][2]+"#");
// out.println(fRow); --> Output: 0,1,2,3....
// out.print(rs.getRows()[0].data); --> Error: "No field name"
out.print(rs.getRowsByIndex()[0][0]); // output--> 1,1,1,1,...
// ***********************************************************************
// My Problem:
// out.print(rs.getRowsByIndex()[fRow][0]); // Error: "<head><title>JRun Servlet Error</title></head><h1>500 7</h1><body>7</body>
// ***********************************************************************

}

%>
// Why the fRow var is not read by the SortedMap objcet? Cast?

thanks

Lorenzo Sicilia


--
To unsubscribe, e-mail: <mailto:taglibs-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:taglibs-user-help@;jakarta.apache.org>

Reply via email to