I am a newbie too. But my understanding is if you are using a JDBC connection 
for your database query, the instance of the ResultSet gets garbage-collected 
once the connection is closed. So you have to "save" the result in some 
Collection before it gets lost.

Qingtian Wang



On Friday 21 June 2002 08:23, David Chu wrote:
> I am trying to get my head around this struts framework for the first time.
> I am confused about the best/standard way to access data from a JSP.
>
> - Let's say I want a page list_items.jsp.
> - I have access to a bean that has a method that returns the results of a
> database query as a ResultSet object.
> - How should I iterate through the rows of the bean?
> - Complication: my jsp complains that the ResultSet object has been closed
> (because I closed the query)
>
> Is this the prefered encapsulator of data that I should be accessing
> through my JSP?  Hopefully I can use the <struts-logic:iterate> tag.
>
> Thanks for helping out a new struts developer!
>
> -david
>
> ------------------------------
> David C. Chu
> America Online
> Network Tools Intern
> ------------------------------
>
>
> _______________________________________________
> MVC-Programmers mailing list
> [EMAIL PROTECTED]
> http://www.basebeans.com:8081/mailman/listinfo/mvc-programmers
_______________________________________________
MVC-Programmers mailing list
[EMAIL PROTECTED]
http://www.basebeans.com:8081/mailman/listinfo/mvc-programmers

Reply via email to