@Override
public int executeUpdate(final JDBCFilter filter) {
try {
Client client = new CommonCallableClient(this.getConnection());
int i = client.executeUpdate(filter.getFilter(), this.toParameterList(filter.getParameters()));
return i;
} catch (SQLException e) {
throw new PersistenceException(e);
}
}