SessionRemote sr = null;
CommandRemote cr = null;
try {
sr = SessionRemotePool.getMasterSessionRemote(session.getOriginalProperties());
cr = SessionRemotePool.getCommandRemote(sr, sql, getParameters(), dc.getFetchSize());
int updateCount = cr.executeUpdate();
refreshMetaTable();
return updateCount;
} catch (Exception e) {
throw DbException.convert(e);
} finally {