RE: Connection Manager Question

2003-10-13 Thread ron . gallagher
Oscar -- The serviceConnectionManager method has been a part of the PersistenceBroker interface since rev 1.14, 2002/12/24. Is there any chance you have an old copy of the OJB classes in your classpath? Ron Gallagher Atlanta, GA [EMAIL PROTECTED] -Original Message- From: Oscar Quintero

Re: Connection Manager Question

2003-09-16 Thread Edson Carlos Ericksson Richter
onday, September 15, 2003 4:23 PM Subject: RE: Connection Manager Question Ok, so I should still call the close on the CallableStatement? My DBA was telling me I was getting open cursors left on the DB so I added the cs.close(); and conn.close(). I'm guessing if I just remove

RE: Connection Manager Question

2003-09-15 Thread Graham Lounder
ssage- From: Armin Waibel [mailto:[EMAIL PROTECTED] Sent: Monday, September 15, 2003 4:14 PM To: OJB Users List Subject: Re: Connection Manager Question Hi, never do con.close(). Normally this is done by OJB. When not running in a PB-tx (or managed tx), then it is allowed to

Re: Connection Manager Question

2003-09-15 Thread Armin Waibel
Hi, never do con.close(). Normally this is done by OJB. When not running in a PB-tx (or managed tx), then it is allowed to call ConnectionManager.releaseConnection() if you want to close the connecion 'by hand'. Else connection was closed on PB.abortTransaction PB.commitTransaction PB.close regar