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

@ -59,7 +59,7 @@ public class DelegatingPreparedStatement
private /*final*/ Connection _conn;
public DelegatingPreparedStatement(PreparedStatement stmnt, Connection conn) {
initialize(stmnt, conn);
initialize(stmnt, conn);
}
public void initialize(PreparedStatement stmnt, Connection conn) {
@ -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();
}
}