Re: CachedRowset with logic:iterate tag

2002-07-18 Thread @Basebeans.com
Subject: Re: CachedRowset with logic:iterate tag From: David Chu [EMAIL PROTECTED] === Hi, When first using struts, I first tried to use a CachedRowSet object as well. However, based on other people's recommendations, I just went with a simple Vector of Beans, one representing each row

Re: CachedRowset with logic:iterate tag

2002-07-18 Thread @Basebeans.com
Subject: Re: CachedRowset with logic:iterate tag From: Vic C. [EMAIL PROTECTED] === I have extendend and made cached row set work with the iterator. See webPIM on sourceforge, basebeans.com or downloads.com David Chu wrote: Hi, When first using struts, I first tried to use a CachedRowSet

Re: CachedRowset with logic:iterate tag

2002-07-18 Thread Chad Johnson
to the JSTL friendly Result class. -Chad Johnson - Original Message - From: aps olute [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 17, 2002 6:19 PM Subject: CachedRowset with logic:iterate tag How to iterate over a CachedRowSet using logic:iterate tags? I have filled

Re: CachedRowset with logic:iterate tag

2002-07-18 Thread aps olute
Ok from what I gather from the responses, it is not necessary to use Struts Tags to iterate the contents of the CachedRowSet. However I would still like how to do this. I've looked at webPIM, and were not able to download as there are no jar files or zip files package I saw at sourceforge.net,

CachedRowset with logic:iterate tag

2002-07-17 Thread aps olute
How to iterate over a CachedRowSet using logic:iterate tags? I have filled the CachedRowset with a select statement and am able to iterate using the crs.getString(1) or the crs.getString(colname) methods, but no am ready to use Struts tags but dont know how. Do I need to convert it a Collection