Re: [OT] minIdle not being enforced and connections are getting closed instead of returning to the pool

2013-11-19 Thread Srikanth
Hi Chris, We are creating oracle.sql.ARRAY objects in our application using the below piece of code. ArrayDescriptor varArrayDesc = ArrayDescriptor.createDescriptor("ARRAY_XYZ", connection); ARRAY xyzArray = new ARRAY(ArrayDescriptor paramArrayDescriptor, Connection paramConnection, Object paramO

Re: [OT] minIdle not being enforced and connections are getting closed instead of returning to the pool

2013-11-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Srikanth, On 11/15/13, 2:36 AM, Srikanth wrote: > I was unwrapping each connection before returning it using the > below piece of code. > > con = > ds.getConnection().unwrap(oracle.jdbc.OracleConnection.*class*); > > *return* con; > > As explaine