My application worked perfectly 2.1.6. Now that I’ve
tried testing on 3.0.6 I keep getting this error:
[11:58:32.140] Closing dangling connections. All connections must have a close(
) in a finally block.
I have close connections in my finally blocks using this
method (which worked fine before):
public boolean isConnectionClosed(){
try{
if (dbConnection != null){
dbConnection.close();
return dbConnection.isClosed();
}else
return true;
}
catch (SQLException e){
return true;
}
Any clues ??????????????????????
Tom Kochanowicz