add missing delegate method for Java8 support

This commit is contained in:
Mark Struberg 2019-02-14 10:03:04 +01:00
parent b714dbae18
commit b484ee1f22
1 changed files with 3 additions and 3 deletions

View File

@ -664,11 +664,11 @@ public class DelegatingPreparedStatement
@Override
public boolean isCloseOnCompletion() throws SQLException{
throw new UnsupportedOperationException();
return _stmnt.isCloseOnCompletion();
}
@Override
public void closeOnCompletion() throws SQLException{
throw new UnsupportedOperationException();
_stmnt.closeOnCompletion();
}
}