Hi,

Version: Derby 10.1.1.0

I'm getting the error message as described in
http://issues.apache.org/jira/browse/DERBY-1149 
when I attempt to close my JDBC
connection. The code:


Connection conn = .... // obtain Connection

try
{
    .... // processing
    conn.commit();
}
catch( Exception e )
{
    JdbcUtil.rollback( conn );    
}
finally
{
    JdbcUtil.closeResultSet( rsRowLock );
    JdbcUtil.closeStatement( statementRowLock );
    JdbcUtil.closeConnection( conn );
}

The SQLException is thrown when I try to close the 
connection (see finally block).



Reply via email to