The default behavior of the resultset tag is to loop through the result set objects' rows. So if your query returns 10 rows, the body of the tag should loop 10 times. You say that you only see the first rows' values, are you sure that the query returns more that 1 row? Where are you seeing your results?
Steve -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 03, 2002 11:37 PM To: Tag Libraries Users List Subject: ResultSet Nested Tags Hi, While using Nested Tags <sql:resultset id ="resultset object"> <sql:getcolumn position="1"> <sql:getcolumn position="2"> </sql:resultset> Employee Table ------------------------------------------ Empno Employeename 23 Nelson 24 Samuel 25 George Suppose my resultset object is obtained from this "select Empno,Employeename from Employee" I am able to retrieve only the First Row values. How to retrieve all the values from the resultset. Kindly help me in this regard. Regards anushaa.j -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
