record.setIntegerfield(new Integer(9));
dao.insert(record);
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);
assertEquals(1, answer.size());
record = (Fieldsonly) answer.get(0);
assertEquals(record.getDoublefield(), new Double(11.22));
assertEquals(record.getFloatfield(), new Double(33.44));
assertEquals(record.getIntegerfield(), new Integer(5));
example.clear();
example.createCriteria().andIntegerfieldEqualTo(new Integer(8));
answer = dao.selectByExample(example);
assertEquals(1, answer.size());
record = (Fieldsonly) answer.get(0);
assertEquals(record.getDoublefield(), new Double(99));
assertEquals(record.getFloatfield(), new Double(66.77));
assertEquals(record.getIntegerfield(), new Integer(8));
example.clear();
example.createCriteria().andIntegerfieldEqualTo(new Integer(9));
answer = dao.selectByExample(example);
assertEquals(1, answer.size());
record = (Fieldsonly) answer.get(0);
assertEquals(record.getDoublefield(), new Double(99));
assertEquals(record.getFloatfield(), new Double(100.111));