use of mbg.test.mb3.generated.dsql.model.Pkonly in project generator by mybatis.
the class FlatJava5Test method testPKOnlyInsert.
@Test
public void testPKOnlyInsert() {
SqlSession sqlSession = sqlSessionFactory.openSession();
try {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
Pkonly key = new Pkonly();
key.setId(1);
key.setSeqNum(3);
mapper.insert(key);
PkonlyExample example = new PkonlyExample();
List<Pkonly> answer = mapper.selectByExample(example);
assertEquals(1, answer.size());
Pkonly returnedRecord = answer.get(0);
assertEquals(key.getId(), returnedRecord.getId());
assertEquals(key.getSeqNum(), returnedRecord.getSeqNum());
} finally {
sqlSession.close();
}
}
use of mbg.test.mb3.generated.dsql.model.Pkonly in project generator by mybatis.
the class FlatJava5Test method testPKOnlyCountByExample.
@Test
public void testPKOnlyCountByExample() {
SqlSession sqlSession = sqlSessionFactory.openSession();
try {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
Pkonly key = new Pkonly();
key.setId(1);
key.setSeqNum(3);
mapper.insert(key);
key = new Pkonly();
key.setId(5);
key.setSeqNum(6);
mapper.insert(key);
key = new Pkonly();
key.setId(7);
key.setSeqNum(8);
mapper.insert(key);
PkonlyExample example = new PkonlyExample();
example.createCriteria().andIdGreaterThan(4);
long rows = mapper.countByExample(example);
assertEquals(2, rows);
example.clear();
rows = mapper.countByExample(example);
assertEquals(3, rows);
} finally {
sqlSession.close();
}
}
use of mbg.test.mb3.generated.dsql.model.Pkonly in project generator by mybatis.
the class FlatJava5Test method testPKOnlySelectByExample.
@Test
public void testPKOnlySelectByExample() {
SqlSession sqlSession = sqlSessionFactory.openSession();
try {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
Pkonly key = new Pkonly();
key.setId(1);
key.setSeqNum(3);
mapper.insert(key);
key = new Pkonly();
key.setId(5);
key.setSeqNum(6);
mapper.insert(key);
key = new Pkonly();
key.setId(7);
key.setSeqNum(8);
mapper.insert(key);
PkonlyExample example = new PkonlyExample();
example.createCriteria().andIdGreaterThan(4);
List<Pkonly> answer = mapper.selectByExample(example);
assertEquals(2, answer.size());
} finally {
sqlSession.close();
}
}
use of mbg.test.mb3.generated.dsql.model.Pkonly in project generator by mybatis.
the class FlatJava5Test method testPKOnlyDeleteByExample.
@Test
public void testPKOnlyDeleteByExample() {
SqlSession sqlSession = sqlSessionFactory.openSession();
try {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
Pkonly key = new Pkonly();
key.setId(1);
key.setSeqNum(3);
mapper.insert(key);
key = new Pkonly();
key.setId(5);
key.setSeqNum(6);
mapper.insert(key);
key = new Pkonly();
key.setId(7);
key.setSeqNum(8);
mapper.insert(key);
PkonlyExample example = new PkonlyExample();
example.createCriteria().andIdGreaterThan(4);
int rows = mapper.deleteByExample(example);
assertEquals(2, rows);
example = new PkonlyExample();
List<Pkonly> answer = mapper.selectByExample(example);
assertEquals(1, answer.size());
} finally {
sqlSession.close();
}
}
use of mbg.test.mb3.generated.dsql.model.Pkonly in project generator by mybatis.
the class UpdateByExampleTest method testPKOnlyUpdateByExampleSelective.
@Test
public void testPKOnlyUpdateByExampleSelective() {
try (SqlSession sqlSession = sqlSessionFactory.openSession()) {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
Pkonly key = new Pkonly(1, 3);
mapper.insert(key);
key = new Pkonly(5, 6);
mapper.insert(key);
key = new Pkonly(7, 8);
mapper.insert(key);
Pkonly updateKey = new Pkonly(null, 3);
int rows = mapper.update(dsl -> PkonlyMapper.updateSelectiveColumns(updateKey, dsl).where(pkonly.id, isGreaterThan(4)));
assertEquals(2, rows);
long returnedRows = mapper.count(dsl -> dsl.where(pkonly.id, isEqualTo(5)).and(pkonly.seqNum, isEqualTo(3)));
assertEquals(1, returnedRows);
returnedRows = mapper.count(dsl -> dsl.where(pkonly.id, isEqualTo(7)).and(pkonly.seqNum, isEqualTo(3)));
assertEquals(1, returnedRows);
}
}
Aggregations