a.setValue("data", new Binary("Update data.".getBytes("utf-8")));
commit(context);
// Read
assertNull(context.beginTransaction());
a.invoke("read", new Object[]{
parse("(data)"),
parse("(= (@ id) \"" + sOidName + "\")"), null, null, null, null
});
assertEquals(new Binary("Update data.".getBytes("utf-8")), a.getValue("data"));