Search in sources :

Example 36 with Fieldsonly

use of mbg.test.ib2j2.generated.flat.model.Fieldsonly in project generator by mybatis.

the class FlatJava5Test method testFieldsOnlyCountByExample.

@Test
public void testFieldsOnlyCountByExample() {
    FieldsonlyDAO dao = getFieldsonlyDAO();
    try {
        Fieldsonly record = new Fieldsonly();
        record.setDoublefield(11.22);
        record.setFloatfield(33.44);
        record.setIntegerfield(5);
        dao.insert(record);
        record = new Fieldsonly();
        record.setDoublefield(44.55);
        record.setFloatfield(66.77);
        record.setIntegerfield(8);
        dao.insert(record);
        record = new Fieldsonly();
        record.setDoublefield(88.99);
        record.setFloatfield(100.111);
        record.setIntegerfield(9);
        dao.insert(record);
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldGreaterThan(5);
        long rows = dao.countByExample(example);
        assertEquals(2, rows);
        example.clear();
        rows = dao.countByExample(example);
        assertEquals(3, rows);
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j5.generated.flat.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j5.generated.flat.model.FieldsonlyExample) SQLException(java.sql.SQLException) Fieldsonly(mbg.test.ib2j5.generated.flat.model.Fieldsonly) Test(org.junit.Test)

Example 37 with Fieldsonly

use of mbg.test.ib2j2.generated.flat.model.Fieldsonly in project generator by mybatis.

the class FlatJava5Test method testFieldsOnlyDeleteByExample.

@Test
public void testFieldsOnlyDeleteByExample() {
    SqlSession sqlSession = sqlSessionFactory.openSession();
    try {
        FieldsonlyMapper mapper = sqlSession.getMapper(FieldsonlyMapper.class);
        Fieldsonly record = new Fieldsonly();
        record.setDoublefield(11.22);
        record.setFloatfield(33.44);
        record.setIntegerfield(5);
        mapper.insert(record);
        record = new Fieldsonly();
        record.setDoublefield(44.55);
        record.setFloatfield(66.77);
        record.setIntegerfield(8);
        mapper.insert(record);
        record = new Fieldsonly();
        record.setDoublefield(88.99);
        record.setFloatfield(100.111);
        record.setIntegerfield(9);
        mapper.insert(record);
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldGreaterThan(5);
        int rows = mapper.deleteByExample(example);
        assertEquals(2, rows);
        example = new FieldsonlyExample();
        List<Fieldsonly> answer = mapper.selectByExample(example);
        assertEquals(1, answer.size());
    } finally {
        sqlSession.close();
    }
}
Also used : FieldsonlyExample(mbg.test.mb3.generated.flat.model.FieldsonlyExample) SqlSession(org.apache.ibatis.session.SqlSession) FieldsonlyMapper(mbg.test.mb3.generated.flat.mapper.FieldsonlyMapper) Fieldsonly(mbg.test.mb3.generated.flat.model.Fieldsonly) Test(org.junit.Test)

Example 38 with Fieldsonly

use of mbg.test.ib2j2.generated.flat.model.Fieldsonly in project generator by mybatis.

the class FlatJava5Test method testFieldsOnlySelectByExample.

@Test
public void testFieldsOnlySelectByExample() {
    SqlSession sqlSession = sqlSessionFactory.openSession();
    try {
        FieldsonlyMapper mapper = sqlSession.getMapper(FieldsonlyMapper.class);
        Fieldsonly record = new Fieldsonly();
        record.setDoublefield(11.22);
        record.setFloatfield(33.44);
        record.setIntegerfield(5);
        mapper.insert(record);
        record = new Fieldsonly();
        record.setDoublefield(44.55);
        record.setFloatfield(66.77);
        record.setIntegerfield(8);
        mapper.insert(record);
        record = new Fieldsonly();
        record.setDoublefield(88.99);
        record.setFloatfield(100.111);
        record.setIntegerfield(9);
        mapper.insert(record);
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldGreaterThan(5);
        List<Fieldsonly> answer = mapper.selectByExample(example);
        assertEquals(2, answer.size());
        example = new FieldsonlyExample();
        answer = mapper.selectByExample(example);
        assertEquals(3, answer.size());
    } finally {
        sqlSession.close();
    }
}
Also used : FieldsonlyExample(mbg.test.mb3.generated.flat.model.FieldsonlyExample) SqlSession(org.apache.ibatis.session.SqlSession) FieldsonlyMapper(mbg.test.mb3.generated.flat.mapper.FieldsonlyMapper) Fieldsonly(mbg.test.mb3.generated.flat.model.Fieldsonly) Test(org.junit.Test)

Aggregations

SQLException (java.sql.SQLException)23 List (java.util.List)19 Test (org.junit.Test)16 ArrayList (java.util.ArrayList)11 FieldsonlyDAO (mbg.test.ib2j2.generated.flat.dao.FieldsonlyDAO)8 Fieldsonly (mbg.test.ib2j2.generated.flat.model.Fieldsonly)8 FieldsonlyExample (mbg.test.ib2j2.generated.flat.model.FieldsonlyExample)8 FieldsonlyDAO (mbg.test.ib2j5.generated.flat.dao.FieldsonlyDAO)8 Fieldsonly (mbg.test.ib2j5.generated.flat.model.Fieldsonly)8 FieldsonlyExample (mbg.test.ib2j5.generated.flat.model.FieldsonlyExample)8 FieldsonlyMapper (mbg.test.mb3.generated.flat.mapper.FieldsonlyMapper)8 Fieldsonly (mbg.test.mb3.generated.flat.model.Fieldsonly)8 FieldsonlyExample (mbg.test.mb3.generated.flat.model.FieldsonlyExample)8 SqlSession (org.apache.ibatis.session.SqlSession)8 FieldsonlyDAO (mbg.test.ib2j2.generated.conditional.dao.FieldsonlyDAO)7 Fieldsonly (mbg.test.ib2j2.generated.conditional.model.Fieldsonly)7 FieldsonlyExample (mbg.test.ib2j2.generated.conditional.model.FieldsonlyExample)7 FieldsonlyDAO (mbg.test.ib2j2.generated.hierarchical.dao.FieldsonlyDAO)7 Fieldsonly (mbg.test.ib2j2.generated.hierarchical.model.subpackage.Fieldsonly)7 FieldsonlyExample (mbg.test.ib2j2.generated.hierarchical.model.subpackage.FieldsonlyExample)7