Session s = getSession();
CommandBuilder cb = new CommandBuilder(s);
cb.getSelect().updateTable(
s.getDatabase().getMainSchema().findTableOrView("Log"));
s.getMsgBus().fireEvent(new TableEvent()); // XXX encapsulation
cb.fireDirty();
Comparison c = new Comparison(s);
cb.getSelect().addCondition(c);
cb.fireDirty();