Wrap rollback in exception handlers in try-catch
------------------------------------------------
Key: DERBY-4443
URL: https://issues.apache.org/jira/browse/DERBY-4443
Project: Derby
Issue Type: Bug
Components: Demos/Scripts, Documentation, Eclipse Plug-in, JDBC,
Network Client, Network Server, Replication, Services, SQL, Store, Test, Tools
Affects Versions: 10.5.3.0
Reporter: Aaron Digulla
Avoid this pattern everywhere:
}catch(SQLException se){
//issue a rollback on any errors
conn.rollback();
throw se;
}
because an error in rollback will shadow the original exception.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.