public void batchupdateexec(string sqlid, listobject param) throws daoexception { if (sqlid != null sqlid.length() 0) { if (param != null param.size() 0) { try { this.getsqlmapclient().startbatch(); for (int i = 0; i param.size(); i) { thi
public void batchupdateexec(string sqlid, list param) throws daoexception {
if (sqlid != null && sqlid.length() > 0) {
if (param != null && param.size() > 0) {
try {
this.getsqlmapclient().startbatch();
for (int i = 0; i this.getsqlmapclient().update(sqlid, param.get(i));
}
this.getsqlmapclient().executebatch();
} catch (sqlexception e) {
throw new daoexception(e);
}
}
}
}