Setting DB-Pool manually into the Context

2002-02-21 Thread Engst Oliver (Platinion)
Hi, I'm new in Orion and I have the problem, that I want to debug my classes in the JBuilder IDE. The problem is, that we are using the DB-Pool which OC4J generates automaically by the information of the datasources.xml. For debugging I'd like to generate the Pool manually (done) in an TestApplic

SOLVED .. Leaked Connection...

2001-08-10 Thread Engst Oliver (Platinion)
First of all.. you're right.. we don't use EJBs.. I found it. I passed just the ResultSet Object to the Thread and used the objRs.getStatement().getConnection().close() to close it. The Pool cannot handle object references like this. Now I set up an additional parameter to the Thread which contai

Leaked Connections .. URGENT !!!

2001-08-10 Thread Engst Oliver (Platinion)
If somebody could help me I would be very pleased. I have a Bean, which is getting a Connection, fetching some data and then creates a background Thread which fetches the rest of the data. This additional background thread closes the connection in a Try{} finally block. All works fine. I have Sys