[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
is this the best way to handle this? as my project is rather small scale..there isnt a need for me to use ORM.. On 2/20/06, Vijaya S <[EMAIL PROTECTED]> wrote: > > You have to copy the resultset to an arraylist and return the arraylist. > > Vijaya > > > -Original Message- > From: chuanjian

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 cla