Re: JDBC connection leak

2002-03-07 Thread Stephen Davidson
Hi Marc. Maybe try a conn.commit() before conn.close()? -Steve Marc Lehnert wrote: Hello! I call the following code in a Message Driven Bean in Orion 1.5.2. After the conn.close() all entity beans I created in some code before are destroyed. The database is empty. The sql statement gets

RE: JDBC connection leak

2002-03-07 Thread John Creaner
Hi, Not sure if this is what your looking for but you should really close all associations to the connection cause I think that the way CMT works with orion is that the close method merely returns it to the pool so you should do the following before you close: stmt =