db = Strings.getXMLValue(e, "db");
// DQL
Element update = (Element) Strings.getXMLObject(e, "update");
if (update == null)
return;
st = new Sttmnt(db, update, "i", "p", "o");
String sprcpool = Strings.getXMLValue(e, "parallel#prcpool");
if (sprcpool != null) {
prcpool = (PoolThread) ApplicationManager.getPoolByName(sprcpool, ru.vassaev.core.thread.Process.class);
String max = Strings.getXMLValue(e, "parallel#max");
this.parallel_max = Strings.parseIntegerNvl(max, 0);