record = new Pkblobs();
record.setId(new Integer(3));
record.setBlob1(TestUtilities.generateRandomBlob());
record.setBlob2(TestUtilities.generateRandomBlob());
int rows = dao.updateByPrimaryKey(record);
assertEquals(1, rows);
Pkblobs newRecord = dao.selectByPrimaryKey(new Integer(3));
assertNotNull(newRecord);