RE: Poolman question

2001-12-18 Thread MacKellar, Kimberly
Thanks for the info. I'll try that version. Kim -Original Message- From: Justin Piper [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 5:41 PM To: 'Struts Users Mailing List' Subject: RE: Poolman question I ran into this problem with Poolman 2.1b, as wel

RE: Poolman question

2001-12-18 Thread Justin Piper
the database. I got fed up and switched my project over to use version 2.0.4 instead, which thus far seems to work much better. -Original Message- From: MacKellar, Kimberly [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 5:28 PM To: 'Struts Users Mailing List' S

RE: Poolman question

2001-12-18 Thread MacKellar, Kimberly
e problem I'm having with closing the connection is causing this. Kim -Original Message- From: Robert Parker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 5:23 PM To: Struts Users Mailing List Subject: Re: Poolman question Whilst we're on the exception handling

Re: Poolman question

2001-12-18 Thread Robert Parker
I'm using poolman with Oracle - its all been completely transparent. Rob - Original Message - From: "Nathan Anderson" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, December 19, 2001 10:13 AM Subject: RE

RE: Poolman question

2001-12-18 Thread Nathan Anderson
l; } } -Original Message- From: MacKellar, Kimberly [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 2:57 PM To: 'Struts Users Mailing List' Subject: RE: Poolman question I'm not sure how my connection could be null at the point I try to close it. Follo

Re: Poolman question

2001-12-18 Thread Robert Parker
quot;'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Wednesday, December 19, 2001 9:57 AM Subject: RE: Poolman question > I'm not sure how my connection could be null at the point I try to close it. > Following is one of the methods where I'm having this

RE: Poolman question

2001-12-18 Thread MacKellar, Kimberly
:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 4:35 PM To: Struts Users Mailing List Subject: RE: Poolman question When you call "conn.close()" it can throw an SQLException so you should put it in a try catch block with an empty catch. But this is not the problem you have. In you

Re: Poolman question

2001-12-18 Thread Robert Parker
I'm a little hazy on this, but from memory poolman used to search the classpath and the first poolman.xml file was the one it used for config. Thus you needed a single config file shared by all your webapps. I think I used to use a single config file installed somewhere in the webservers libs rat

RE: Poolman question

2001-12-18 Thread Nathan Anderson
When you call "conn.close()" it can throw an SQLException so you should put it in a try catch block with an empty catch. But this is not the problem you have. In your case conn is already null. So you should have something like this: try { if (resultSet!=null) resultSet.close();