record = new Fieldsonly();
record.setDoublefield(new Double(99));
FieldsonlyExample example = new FieldsonlyExample();
example.createCriteria().andIntegerfieldGreaterThan(new Integer(5));
int rows = dao.updateByExampleSelective(record, example);
assertEquals(2, rows);
example.clear();
example.createCriteria().andIntegerfieldEqualTo(new Integer(5));
List answer = dao.selectByExample(example);