Craig Jones
unread,Jun 15, 2012, 9:46:50 PM6/15/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to autopat...@googlegroups.com
To get AutoPatch 1.4.1 running, I had to clone the source code and add a catch to SqlUtil.close(,,) to deal wit the fact that DBCP's DelegatingResultSet acts badly:
catch (AbstractMethodError e)
{
log.debug("AbstractMethodError closing ResultSet. ResultSet might be a DelegatingResultSet with a badly implemented (i.e. missing) delegation to isClosed().", e);
}
Should I fork the code and submit this with a pull request?