[OT] Re: Returning ResultSet

2006-02-20 Thread Dave Newton
chuanjiang lo wrote: > Hi guys, > > I have this DBConnectionManager class that manages the connection pooling. > It has this method to get some results from the database. > > So my action form make use of the method to get the resultset and tries to > display on the jsp page. > But the method would

Re: Returning ResultSet

2006-02-20 Thread chuanjiang lo
riginal Message- > From: chuanjiang lo [mailto:[EMAIL PROTECTED] > Sent: Monday, February 20, 2006 6:22 PM > To: user@struts.apache.org > Subject: Returning ResultSet > > > Hi guys, > > I have this DBConnectionManager class that manages the connection pooling. > It has thi

RE: Returning ResultSet

2006-02-20 Thread Vijaya S
You have to copy the resultset to an arraylist and return the arraylist. Vijaya -Original Message- From: chuanjiang lo [mailto:[EMAIL PROTECTED] Sent: Monday, February 20, 2006 6:22 PM To: user@struts.apache.org Subject: Returning ResultSet Hi guys, I have this DBConnectionManager

Returning ResultSet

2006-02-20 Thread chuanjiang lo
Hi guys, I have this DBConnectionManager class that manages the connection pooling. It has this method to get some results from the database. So my action form make use of the method to get the resultset and tries to display on the jsp page. But the method would close the connection after i query