Search in sources :

Example 11 with FieldsonlyExample

use of mbg.test.mb3.generated.flat.model.FieldsonlyExample in project generator by mybatis.

the class FlatJava2Test method testFieldsOnlyInsert.

public void testFieldsOnlyInsert() {
    FieldsonlyDAO dao = getFieldsonlyDAO();
    try {
        Fieldsonly record = new Fieldsonly();
        record.setDoublefield(new Double(11.22));
        record.setFloatfield(new Double(33.44));
        record.setIntegerfield(new Integer(5));
        dao.insert(record);
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldEqualTo(new Integer(5));
        List answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
        Fieldsonly returnedRecord = (Fieldsonly) answer.get(0);
        assertEquals(record.getIntegerfield(), returnedRecord.getIntegerfield());
        assertEquals(record.getDoublefield(), returnedRecord.getDoublefield());
        assertEquals(record.getFloatfield(), returnedRecord.getFloatfield());
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j2.generated.flat.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j2.generated.flat.model.FieldsonlyExample) SQLException(java.sql.SQLException) ArrayList(java.util.ArrayList) List(java.util.List) Fieldsonly(mbg.test.ib2j2.generated.flat.model.Fieldsonly)

Example 12 with FieldsonlyExample

use of mbg.test.mb3.generated.flat.model.FieldsonlyExample in project generator by mybatis.

the class FlatJava2Test method testFieldsOnlySelectByExample.

public void testFieldsOnlySelectByExample() {
    FieldsonlyDAO dao = getFieldsonlyDAO();
    try {
        Fieldsonly record = new Fieldsonly();
        record.setDoublefield(new Double(11.22));
        record.setFloatfield(new Double(33.44));
        record.setIntegerfield(new Integer(5));
        dao.insert(record);
        record = new Fieldsonly();
        record.setDoublefield(new Double(44.55));
        record.setFloatfield(new Double(66.77));
        record.setIntegerfield(new Integer(8));
        dao.insert(record);
        record = new Fieldsonly();
        record.setDoublefield(new Double(88.99));
        record.setFloatfield(new Double(100.111));
        record.setIntegerfield(new Integer(9));
        dao.insert(record);
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldGreaterThan(new Integer(5));
        List answer = dao.selectByExample(example);
        assertEquals(2, answer.size());
        example.clear();
        answer = dao.selectByExample(example);
        assertEquals(3, answer.size());
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j2.generated.flat.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j2.generated.flat.model.FieldsonlyExample) SQLException(java.sql.SQLException) ArrayList(java.util.ArrayList) List(java.util.List) Fieldsonly(mbg.test.ib2j2.generated.flat.model.Fieldsonly)

Example 13 with FieldsonlyExample

use of mbg.test.mb3.generated.flat.model.FieldsonlyExample in project generator by mybatis.

the class FlatJava2Test method testFieldsOnlyDeleteByExample.

public void testFieldsOnlyDeleteByExample() {
    FieldsonlyDAO dao = getFieldsonlyDAO();
    try {
        Fieldsonly record = new Fieldsonly();
        record.setDoublefield(new Double(11.22));
        record.setFloatfield(new Double(33.44));
        record.setIntegerfield(new Integer(5));
        dao.insert(record);
        record = new Fieldsonly();
        record.setDoublefield(new Double(44.55));
        record.setFloatfield(new Double(66.77));
        record.setIntegerfield(new Integer(8));
        dao.insert(record);
        record = new Fieldsonly();
        record.setDoublefield(new Double(88.99));
        record.setFloatfield(new Double(100.111));
        record.setIntegerfield(new Integer(9));
        dao.insert(record);
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldGreaterThan(new Integer(5));
        int rows = dao.deleteByExample(example);
        assertEquals(2, rows);
        example.clear();
        List answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j2.generated.flat.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j2.generated.flat.model.FieldsonlyExample) SQLException(java.sql.SQLException) ArrayList(java.util.ArrayList) List(java.util.List) Fieldsonly(mbg.test.ib2j2.generated.flat.model.Fieldsonly)

Example 14 with FieldsonlyExample

use of mbg.test.mb3.generated.flat.model.FieldsonlyExample in project generator by mybatis.

the class UpdateByExampleTest method testFieldsOnlyUpdateByExampleSelective.

@Test
public void testFieldsOnlyUpdateByExampleSelective() {
    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);
        record = new Fieldsonly();
        record.setDoublefield(99d);
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldGreaterThan(5);
        int rows = mapper.updateByExampleSelective(record, example);
        assertEquals(2, rows);
        example.clear();
        example.createCriteria().andIntegerfieldEqualTo(5);
        List<Fieldsonly> answer = mapper.selectByExample(example);
        assertEquals(1, answer.size());
        record = answer.get(0);
        assertEquals(record.getDoublefield(), 11.22, 0.0);
        assertEquals(record.getFloatfield(), 33.44, 0.0);
        assertEquals(record.getIntegerfield().intValue(), 5);
        example.clear();
        example.createCriteria().andIntegerfieldEqualTo(8);
        answer = mapper.selectByExample(example);
        assertEquals(1, answer.size());
        record = answer.get(0);
        assertEquals(record.getDoublefield(), 99d, 0.0);
        assertEquals(record.getFloatfield(), 66.77, 0.0);
        assertEquals(record.getIntegerfield().intValue(), 8);
        example.clear();
        example.createCriteria().andIntegerfieldEqualTo(9);
        answer = mapper.selectByExample(example);
        assertEquals(1, answer.size());
        record = answer.get(0);
        assertEquals(record.getDoublefield(), 99d, 0.0);
        assertEquals(record.getFloatfield(), 100.111, 0.0);
        assertEquals(record.getIntegerfield().intValue(), 9);
    } 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 15 with FieldsonlyExample

use of mbg.test.mb3.generated.flat.model.FieldsonlyExample in project generator by mybatis.

the class FlatJava5Test method testFieldsOnlySelectByExampleDistinct.

@Test
public void testFieldsOnlySelectByExampleDistinct() {
    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);
        mapper.insert(record);
        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().andIntegerfieldEqualTo(5);
        example.setDistinct(true);
        List<Fieldsonly> answer = mapper.selectByExample(example);
        assertEquals(1, answer.size());
        example.clear();
        answer = mapper.selectByExample(example);
        assertEquals(5, 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

Test (org.junit.Test)88 SqlSession (org.apache.ibatis.session.SqlSession)80 SQLException (java.sql.SQLException)16 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.annotated.flat.mapper.FieldsonlyMapper)8 Fieldsonly (mbg.test.mb3.generated.annotated.flat.model.Fieldsonly)8 FieldsonlyExample (mbg.test.mb3.generated.annotated.flat.model.FieldsonlyExample)8 FieldsonlyMapper (mbg.test.mb3.generated.mixed.flat.mapper.FieldsonlyMapper)8 Fieldsonly (mbg.test.mb3.generated.mixed.flat.model.Fieldsonly)8 FieldsonlyExample (mbg.test.mb3.generated.mixed.flat.model.FieldsonlyExample)8 List (java.util.List)7 FieldsonlyMapper (mbg.test.mb3.generated.annotated.conditional.mapper.FieldsonlyMapper)7 Fieldsonly (mbg.test.mb3.generated.annotated.conditional.model.Fieldsonly)7 FieldsonlyExample (mbg.test.mb3.generated.annotated.conditional.model.FieldsonlyExample)7 FieldsonlyMapper (mbg.test.mb3.generated.annotated.hierarchical.Immutable.Mapper.FieldsonlyMapper)7