use of mbg.test.mb3.generated.mixed.flat.model.Pkonly in project generator by mybatis.
the class DynamicSqlTest method testPKOnlySelectByExampleWithMultiInsert.
@Test
public void testPKOnlySelectByExampleWithMultiInsert() {
try (SqlSession sqlSession = sqlSessionFactory.openSession()) {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
mapper.insertMultiple(Arrays.asList(new Pkonly(1, 3), new Pkonly(5, 6), new Pkonly(7, 8)));
List<Pkonly> answer = mapper.select(dsl -> dsl.where(pkonly.id, isGreaterThan(4)).orderBy(pkonly.id));
assertThat(answer.size()).isEqualTo(2);
assertThat(answer.get(0).getId().intValue()).isEqualTo(5);
assertThat(answer.get(0).getSeqNum().intValue()).isEqualTo(6);
assertThat(answer.get(1).getId().intValue()).isEqualTo(7);
assertThat(answer.get(1).getSeqNum().intValue()).isEqualTo(8);
}
}
use of mbg.test.mb3.generated.mixed.flat.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.mixed.flat.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.mixed.flat.model.Pkonly in project generator by mybatis.
the class DynamicSqlTest method testPKOnlyselect.
@Test
public void testPKOnlyselect() {
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);
List<Pkonly> answer = mapper.select(dsl -> dsl.where(pkonly.id, isGreaterThan(4)).orderBy(pkonly.id));
assertThat(answer.size()).isEqualTo(2);
assertThat(answer.get(0).getId().intValue()).isEqualTo(5);
assertThat(answer.get(0).getSeqNum().intValue()).isEqualTo(6);
assertThat(answer.get(1).getId().intValue()).isEqualTo(7);
assertThat(answer.get(1).getSeqNum().intValue()).isEqualTo(8);
}
}
use of mbg.test.mb3.generated.mixed.flat.model.Pkonly in project generator by mybatis.
the class DynamicSqlTest method testPKOnlySelectByExampleBackwards.
@Test
public void testPKOnlySelectByExampleBackwards() {
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);
List<Pkonly> answer = mapper.select(c -> c.where(pkonly.id, isGreaterThan(4)).orderBy(pkonly.id));
assertThat(answer.size()).isEqualTo(2);
assertThat(answer.get(0).getId().intValue()).isEqualTo(5);
assertThat(answer.get(0).getSeqNum().intValue()).isEqualTo(6);
assertThat(answer.get(1).getId().intValue()).isEqualTo(7);
assertThat(answer.get(1).getSeqNum().intValue()).isEqualTo(8);
}
}
Aggregations