Search in sources :

Example 21 with Fieldsonly

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

the class UpdateByExampleTest method testFieldsOnlyUpdateByExampleSelective.

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

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

the class FlatJava2Test method testFieldsOnlySelectByExampleDistinct.

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

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

the class HierarchicalJava2Test 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 (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j2.generated.hierarchical.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j2.generated.hierarchical.model.subpackage.FieldsonlyExample) SQLException(java.sql.SQLException) ArrayList(java.util.ArrayList) List(java.util.List) Fieldsonly(mbg.test.ib2j2.generated.hierarchical.model.subpackage.Fieldsonly)

Example 24 with Fieldsonly

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

the class UpdateByExampleTest method testFieldsOnlyUpdateByExample.

public void testFieldsOnlyUpdateByExample() {
    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);
        record = new Fieldsonly();
        record.setIntegerfield(new Integer(22));
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldEqualTo(new Integer(5));
        int rows = dao.updateByExample(record, example);
        assertEquals(1, rows);
        example.clear();
        example.createCriteria().andIntegerfieldEqualTo(new Integer(22));
        List answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
        record = (Fieldsonly) answer.get(0);
        assertNull(record.getDoublefield());
        assertNull(record.getFloatfield());
        assertEquals(record.getIntegerfield(), new Integer(22));
    } 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) List(java.util.List) Fieldsonly(mbg.test.ib2j2.generated.flat.model.Fieldsonly)

Example 25 with Fieldsonly

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

the class UpdateByExampleTest method testFieldsOnlyUpdateByExampleSelective.

public void testFieldsOnlyUpdateByExampleSelective() {
    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);
        record = new Fieldsonly();
        record.setDoublefield(new Double(99));
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldGreaterThan(new Integer(5));
        int rows = dao.updateByExampleSelective(record, example);
        assertEquals(2, rows);
        example.clear();
        example.createCriteria().andIntegerfieldEqualTo(new Integer(5));
        List answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
        record = (Fieldsonly) answer.get(0);
        assertEquals(record.getDoublefield(), new Double(11.22));
        assertEquals(record.getFloatfield(), new Double(33.44));
        assertEquals(record.getIntegerfield(), new Integer(5));
        example.clear();
        example.createCriteria().andIntegerfieldEqualTo(new Integer(8));
        answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
        record = (Fieldsonly) answer.get(0);
        assertEquals(record.getDoublefield(), new Double(99));
        assertEquals(record.getFloatfield(), new Double(66.77));
        assertEquals(record.getIntegerfield(), new Integer(8));
        example.clear();
        example.createCriteria().andIntegerfieldEqualTo(new Integer(9));
        answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
        record = (Fieldsonly) answer.get(0);
        assertEquals(record.getDoublefield(), new Double(99));
        assertEquals(record.getFloatfield(), new Double(100.111));
        assertEquals(record.getIntegerfield(), new Integer(9));
    } 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) List(java.util.List) Fieldsonly(mbg.test.ib2j2.generated.flat.model.Fieldsonly)

Aggregations

List (java.util.List)19 SQLException (java.sql.SQLException)15 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.hierarchical.dao.FieldsonlyDAO)7 Fieldsonly (mbg.test.ib2j5.generated.hierarchical.model.subpackage.Fieldsonly)7 FieldsonlyExample (mbg.test.ib2j5.generated.hierarchical.model.subpackage.FieldsonlyExample)7 Test (org.junit.Test)7