[#7091] ParsingStatement is not overriding all methods from DefaultStatement
This commit is contained in:
parent
a18861e480
commit
cd176e0ad5
@ -102,6 +102,30 @@ final class ParsingStatement extends DefaultCallableStatement {
|
||||
return super.execute(connection.translate(sql), columnNames);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public final long executeLargeUpdate(String sql) throws SQLException {
|
||||
return super.executeLargeUpdate(connection.translate(sql));
|
||||
}
|
||||
|
||||
@Override
|
||||
public final long executeLargeUpdate(String sql, int autoGeneratedKeys) throws SQLException {
|
||||
return super.executeLargeUpdate(connection.translate(sql), autoGeneratedKeys);
|
||||
}
|
||||
|
||||
@Override
|
||||
public final long executeLargeUpdate(String sql, int[] columnIndexes) throws SQLException {
|
||||
return super.executeLargeUpdate(connection.translate(sql), columnIndexes);
|
||||
}
|
||||
|
||||
@Override
|
||||
public final long executeLargeUpdate(String sql, String[] columnNames) throws SQLException {
|
||||
return super.executeLargeUpdate(connection.translate(sql), columnNames);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public final void addBatch(String sql) throws SQLException {
|
||||
super.addBatch(connection.translate(sql));
|
||||
|
||||
Loading…
Reference in New Issue
Block a user