* Read and modify a customer. Provide needed Create/Update/Delete statements programatically
*/
public void testReadModifyApply() throws Exception {
// Provide updatecommand programmatically via config
ConfigHelper helper = new ConfigHelper();
Table customerTable = helper.addTable("CUSTOMER", "CUSTOMER");
helper.addUpdateStatement(customerTable, "update CUSTOMER set LASTNAME = ?, ADDRESS = ? "
+ "where ID = ?", "LASTNAME ADDRESS ID");
DAS das = DAS.FACTORY.createDAS(helper.getConfig(), getConnection());
// Read customer 1
Command select = das.createCommand("Select * from CUSTOMER where ID = 1");
DataObject root = select.executeQuery();
assertFalse(root.get("CUSTOMER[1]/LASTNAME").equals("Pavick"));