Search in sources :

Example 16 with FieldsonlyExample

use of mbg.test.ib2j2.generated.conditional.model.FieldsonlyExample in project generator by mybatis.

the class ConditionalJava5Test method testFieldsOnlyInsert.

@Test
public void testFieldsOnlyInsert() {
    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);
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldEqualTo(5);
        List<Fieldsonly> answer = mapper.selectByExample(example);
        assertEquals(1, answer.size());
        Fieldsonly returnedRecord = answer.get(0);
        assertEquals(record.getIntegerfield(), returnedRecord.getIntegerfield());
        assertEquals(record.getDoublefield(), returnedRecord.getDoublefield());
        assertEquals(record.getFloatfield(), returnedRecord.getFloatfield());
    } finally {
        sqlSession.close();
    }
}
Also used : FieldsonlyExample(mbg.test.mb3.generated.conditional.model.FieldsonlyExample) SqlSession(org.apache.ibatis.session.SqlSession) FieldsonlyMapper(mbg.test.mb3.generated.conditional.mapper.FieldsonlyMapper) Fieldsonly(mbg.test.mb3.generated.conditional.model.Fieldsonly) Test(org.junit.Test)

Example 17 with FieldsonlyExample

use of mbg.test.ib2j2.generated.conditional.model.FieldsonlyExample in project generator by mybatis.

the class CountByExampleTest method testFieldsOnlyCountByExample.

public void testFieldsOnlyCountByExample() {
    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));
        long rows = dao.countByExample(example);
        assertEquals(2, rows);
        example.clear();
        rows = dao.countByExample(example);
        assertEquals(3, rows);
    } catch (Exception e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j2.generated.conditional.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j2.generated.conditional.model.FieldsonlyExample) Fieldsonly(mbg.test.ib2j2.generated.conditional.model.Fieldsonly)

Example 18 with FieldsonlyExample

use of mbg.test.ib2j2.generated.conditional.model.FieldsonlyExample in project generator by mybatis.

the class InsertTest 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 (Exception e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j2.generated.conditional.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j2.generated.conditional.model.FieldsonlyExample) List(java.util.List) Fieldsonly(mbg.test.ib2j2.generated.conditional.model.Fieldsonly)

Example 19 with FieldsonlyExample

use of mbg.test.ib2j2.generated.conditional.model.FieldsonlyExample in project generator by mybatis.

the class DeleteByExampleTest 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 = new FieldsonlyExample();
        List answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
    } catch (Exception e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j2.generated.conditional.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j2.generated.conditional.model.FieldsonlyExample) List(java.util.List) Fieldsonly(mbg.test.ib2j2.generated.conditional.model.Fieldsonly)

Example 20 with FieldsonlyExample

use of mbg.test.ib2j2.generated.conditional.model.FieldsonlyExample in project generator by mybatis.

the class SelectByExampleTest 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 = new FieldsonlyExample();
        answer = dao.selectByExample(example);
        assertEquals(3, answer.size());
    } catch (Exception e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j2.generated.conditional.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j2.generated.conditional.model.FieldsonlyExample) ArrayList(java.util.ArrayList) List(java.util.List) Fieldsonly(mbg.test.ib2j2.generated.conditional.model.Fieldsonly)

Aggregations

SQLException (java.sql.SQLException)22 List (java.util.List)19 Test (org.junit.Test)14 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.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 FieldsonlyDAO (mbg.test.ib2j5.generated.conditional.dao.FieldsonlyDAO)7 Fieldsonly (mbg.test.ib2j5.generated.conditional.model.Fieldsonly)7 FieldsonlyExample (mbg.test.ib2j5.generated.conditional.model.FieldsonlyExample)7 FieldsonlyMapper (mbg.test.mb3.generated.conditional.mapper.FieldsonlyMapper)7 Fieldsonly (mbg.test.mb3.generated.conditional.model.Fieldsonly)7 FieldsonlyExample (mbg.test.mb3.generated.conditional.model.FieldsonlyExample)7 SqlSession (org.apache.ibatis.session.SqlSession)7