DataObject customer = root.createDataObject("CUSTOMER");
customer.setInt("ID", 720);
customer.set("LASTNAME", "foobar");
customer.set("ADDRESS", "asdfasdf");
ApplyChangesCommand apply = Command.FACTORY.createApplyChangesCommand();
apply.setConnection(getConnection());
apply.execute(root);
select = Command.FACTORY
.createCommand("select * from CUSTOMER where ID = 720");
select.setConnection(getConnection());
root = select.executeQuery();