Search in sources :

Example 11 with Fieldsonly

use of mbg.test.ib2j5.generated.conditional.model.Fieldsonly in project generator by mybatis.

the class HierarchicalJava5Test method testFieldsOnlyDeleteByExample.

@Test
public void testFieldsOnlyDeleteByExample() {
    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);
        int rows = dao.deleteByExample(example);
        assertEquals(2, rows);
        example = new FieldsonlyExample();
        List<Fieldsonly> answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
    } catch (Exception e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j5.generated.hierarchical.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j5.generated.hierarchical.model.subpackage.FieldsonlyExample) Fieldsonly(mbg.test.ib2j5.generated.hierarchical.model.subpackage.Fieldsonly) Test(org.junit.Test)

Example 12 with Fieldsonly

use of mbg.test.ib2j5.generated.conditional.model.Fieldsonly in project generator by mybatis.

the class HierarchicalJava5Test 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 (Exception e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j5.generated.hierarchical.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j5.generated.hierarchical.model.subpackage.FieldsonlyExample) Fieldsonly(mbg.test.ib2j5.generated.hierarchical.model.subpackage.Fieldsonly) Test(org.junit.Test)

Example 13 with Fieldsonly

use of mbg.test.ib2j5.generated.conditional.model.Fieldsonly in project generator by mybatis.

the class UpdateByExampleTest method testFieldsOnlyUpdateByExampleSelective.

@Test
public void testFieldsOnlyUpdateByExampleSelective() {
    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);
        record = new Fieldsonly();
        record.setDoublefield(99d);
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldGreaterThan(5);
        int rows = dao.updateByExampleSelective(record, example);
        assertEquals(2, rows);
        example.clear();
        example.createCriteria().andIntegerfieldEqualTo(5);
        List<Fieldsonly> answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
        record = answer.get(0);
        assertEquals(record.getDoublefield(), 11.22, 0.001);
        assertEquals(record.getFloatfield(), 33.44, 0.001);
        assertEquals(record.getIntegerfield().intValue(), 5);
        example.clear();
        example.createCriteria().andIntegerfieldEqualTo(8);
        answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
        record = answer.get(0);
        assertEquals(record.getDoublefield(), 99, 0.001);
        assertEquals(record.getFloatfield(), 66.77, 0.001);
        assertEquals(record.getIntegerfield().intValue(), 8);
        example.clear();
        example.createCriteria().andIntegerfieldEqualTo(9);
        answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
        record = answer.get(0);
        assertEquals(record.getDoublefield(), 99, 0.001);
        assertEquals(record.getFloatfield(), 100.111, 0.001);
        assertEquals(record.getIntegerfield().intValue(), 9);
    } catch (Exception e) {
        fail(e.getMessage());
    }
}
Also used : FieldsonlyDAO(mbg.test.ib2j5.generated.hierarchical.dao.FieldsonlyDAO) FieldsonlyExample(mbg.test.ib2j5.generated.hierarchical.model.subpackage.FieldsonlyExample) Fieldsonly(mbg.test.ib2j5.generated.hierarchical.model.subpackage.Fieldsonly) Test(org.junit.Test)

Example 14 with Fieldsonly

use of mbg.test.ib2j5.generated.conditional.model.Fieldsonly in project generator by mybatis.

the class UpdateByExampleTest method testFieldsOnlyUpdateByExampleSelective.

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

use of mbg.test.ib2j5.generated.conditional.model.Fieldsonly in project generator by mybatis.

the class UpdateByExampleTest method testFieldsOnlyUpdateByExample.

@Test
public void testFieldsOnlyUpdateByExample() {
    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);
        record = new Fieldsonly();
        record.setIntegerfield(22);
        FieldsonlyExample example = new FieldsonlyExample();
        example.createCriteria().andIntegerfieldEqualTo(5);
        int rows = dao.updateByExample(record, example);
        assertEquals(1, rows);
        example.clear();
        example.createCriteria().andIntegerfieldEqualTo(22);
        List<Fieldsonly> answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
        record = answer.get(0);
        assertNull(record.getDoublefield());
        assertNull(record.getFloatfield());
        assertEquals(record.getIntegerfield().intValue(), 22);
    } 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)

Aggregations

Test (org.junit.Test)29 SQLException (java.sql.SQLException)15 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 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.ib2j5.generated.conditional.dao.FieldsonlyDAO)7 Fieldsonly (mbg.test.ib2j5.generated.conditional.model.Fieldsonly)7 FieldsonlyExample (mbg.test.ib2j5.generated.conditional.model.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 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 List (java.util.List)6 ArrayList (java.util.ArrayList)2