use of mbg.test.ib2j2.generated.flat.dao.PkonlyDAO in project generator by mybatis.
the class FlatJava5Test method testPKOnlySelectByExample.
@Test
public void testPKOnlySelectByExample() {
PkonlyDAO dao = getPkonlyDAO();
try {
Pkonly key = new Pkonly();
key.setId(1);
key.setSeqNum(3);
dao.insert(key);
key = new Pkonly();
key.setId(5);
key.setSeqNum(6);
dao.insert(key);
key = new Pkonly();
key.setId(7);
key.setSeqNum(8);
dao.insert(key);
PkonlyExample example = new PkonlyExample();
example.createCriteria().andIdGreaterThan(4);
List<Pkonly> answer = dao.selectByExample(example);
assertEquals(2, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j2.generated.flat.dao.PkonlyDAO in project generator by mybatis.
the class FlatJava5Test method testPKOnlyDeleteByExample.
@Test
public void testPKOnlyDeleteByExample() {
PkonlyDAO dao = getPkonlyDAO();
try {
Pkonly key = new Pkonly();
key.setId(1);
key.setSeqNum(3);
dao.insert(key);
key = new Pkonly();
key.setId(5);
key.setSeqNum(6);
dao.insert(key);
key = new Pkonly();
key.setId(7);
key.setSeqNum(8);
dao.insert(key);
PkonlyExample example = new PkonlyExample();
example.createCriteria().andIdGreaterThan(4);
int rows = dao.deleteByExample(example);
assertEquals(2, rows);
example = new PkonlyExample();
List<Pkonly> answer = dao.selectByExample(example);
assertEquals(1, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j2.generated.flat.dao.PkonlyDAO in project generator by mybatis.
the class FlatJava5Test method testPKOnlyDeleteByPrimaryKey.
@Test
public void testPKOnlyDeleteByPrimaryKey() {
PkonlyDAO dao = getPkonlyDAO();
try {
Pkonly key = new Pkonly();
key.setId(1);
key.setSeqNum(3);
dao.insert(key);
key = new Pkonly();
key.setId(5);
key.setSeqNum(6);
dao.insert(key);
PkonlyExample example = new PkonlyExample();
List<Pkonly> answer = dao.selectByExample(example);
assertEquals(2, answer.size());
int rows = dao.deleteByPrimaryKey(5, 6);
assertEquals(1, rows);
answer = dao.selectByExample(example);
assertEquals(1, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
Aggregations