Search in sources :

Example 6 with Pkfields

use of mbg.test.mb3.generated.conditional.model.Pkfields in project generator by mybatis.

the class ConditionalJava5Test method testPKFieldsSelectByExampleLike.

@Test
public void testPKFieldsSelectByExampleLike() {
    PkfieldsDAO dao = getPkfieldsDAO();
    try {
        Pkfields record = new Pkfields();
        record.setFirstname("Fred");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(1);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Wilma");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(2);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Pebbles");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(3);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Barney");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(1);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Betty");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(2);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Bamm Bamm");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(3);
        dao.insert(record);
        PkfieldsExample example = new PkfieldsExample();
        example.createCriteria().andFirstnameLike("B%");
        example.setOrderByClause("ID1, ID2");
        List<Pkfields> answer = dao.selectByExample(example);
        assertEquals(3, answer.size());
        Pkfields returnedRecord = answer.get(0);
        assertEquals(2, returnedRecord.getId1().intValue());
        assertEquals(1, returnedRecord.getId2().intValue());
        returnedRecord = answer.get(1);
        assertEquals(2, returnedRecord.getId1().intValue());
        assertEquals(2, returnedRecord.getId2().intValue());
        returnedRecord = answer.get(2);
        assertEquals(2, returnedRecord.getId1().intValue());
        assertEquals(3, returnedRecord.getId2().intValue());
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : SQLException(java.sql.SQLException) Pkfields(mbg.test.ib2j5.generated.conditional.model.Pkfields) PkfieldsExample(mbg.test.ib2j5.generated.conditional.model.PkfieldsExample) PkfieldsDAO(mbg.test.ib2j5.generated.conditional.dao.PkfieldsDAO) Test(org.junit.Test)

Example 7 with Pkfields

use of mbg.test.mb3.generated.conditional.model.Pkfields in project generator by mybatis.

the class ConditionalJava5Test method testPKFieldsUpdateByPrimaryKeySelective.

@Test
public void testPKFieldsUpdateByPrimaryKeySelective() {
    PkfieldsDAO dao = getPkfieldsDAO();
    try {
        Pkfields record = new Pkfields();
        record.setFirstname("Jeff");
        record.setLastname("Smith");
        record.setDecimal60field(5);
        record.setId1(1);
        record.setId2(2);
        dao.insert(record);
        Pkfields newRecord = new Pkfields();
        newRecord.setId1(1);
        newRecord.setId2(2);
        newRecord.setFirstname("Scott");
        newRecord.setDecimal60field(4);
        int rows = dao.updateByPrimaryKeySelective(newRecord);
        assertEquals(1, rows);
        PkfieldsKey key = new PkfieldsKey();
        key.setId1(1);
        key.setId2(2);
        Pkfields returnedRecord = dao.selectByPrimaryKey(key);
        assertTrue(datesAreEqual(record.getDatefield(), returnedRecord.getDatefield()));
        assertEquals(record.getDecimal100field(), returnedRecord.getDecimal100field());
        assertEquals(record.getDecimal155field(), returnedRecord.getDecimal155field());
        assertEquals(record.getDecimal30field(), returnedRecord.getDecimal30field());
        assertEquals(newRecord.getDecimal60field(), returnedRecord.getDecimal60field());
        assertEquals(newRecord.getFirstname(), returnedRecord.getFirstname());
        assertEquals(record.getId1(), returnedRecord.getId1());
        assertEquals(record.getId2(), returnedRecord.getId2());
        assertEquals(record.getLastname(), returnedRecord.getLastname());
        assertTrue(timesAreEqual(record.getTimefield(), returnedRecord.getTimefield()));
        assertEquals(record.getTimestampfield(), returnedRecord.getTimestampfield());
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : SQLException(java.sql.SQLException) Pkfields(mbg.test.ib2j5.generated.conditional.model.Pkfields) PkfieldsKey(mbg.test.ib2j5.generated.conditional.model.PkfieldsKey) PkfieldsDAO(mbg.test.ib2j5.generated.conditional.dao.PkfieldsDAO) Test(org.junit.Test)

Example 8 with Pkfields

use of mbg.test.mb3.generated.conditional.model.Pkfields in project generator by mybatis.

the class ConditionalJava5Test method testPKfieldsDeleteByPrimaryKey.

@Test
public void testPKfieldsDeleteByPrimaryKey() {
    PkfieldsDAO dao = getPkfieldsDAO();
    try {
        Pkfields record = new Pkfields();
        record.setFirstname("Jeff");
        record.setLastname("Smith");
        record.setId1(1);
        record.setId2(2);
        dao.insert(record);
        PkfieldsKey key = new PkfieldsKey();
        key.setId1(1);
        key.setId2(2);
        int rows = dao.deleteByPrimaryKey(key);
        assertEquals(1, rows);
        PkfieldsExample example = new PkfieldsExample();
        List<Pkfields> answer = dao.selectByExample(example);
        assertEquals(0, answer.size());
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : SQLException(java.sql.SQLException) Pkfields(mbg.test.ib2j5.generated.conditional.model.Pkfields) PkfieldsKey(mbg.test.ib2j5.generated.conditional.model.PkfieldsKey) PkfieldsExample(mbg.test.ib2j5.generated.conditional.model.PkfieldsExample) PkfieldsDAO(mbg.test.ib2j5.generated.conditional.dao.PkfieldsDAO) Test(org.junit.Test)

Example 9 with Pkfields

use of mbg.test.mb3.generated.conditional.model.Pkfields in project generator by mybatis.

the class UpdateByExampleTest method testPKFieldsUpdateByExample.

@Test
public void testPKFieldsUpdateByExample() {
    PkfieldsDAO dao = getPkfieldsDAO();
    try {
        Pkfields record = new Pkfields();
        record.setFirstname("Jeff");
        record.setLastname("Smith");
        record.setId1(1);
        record.setId2(2);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Bob");
        record.setLastname("Jones");
        record.setId1(3);
        record.setId2(4);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Fred");
        record.setId1(3);
        record.setId2(4);
        PkfieldsExample example = new PkfieldsExample();
        example.createCriteria().andId1EqualTo(3).andId2EqualTo(4);
        int rows = dao.updateByExample(record, example);
        assertEquals(1, rows);
        example.clear();
        example.createCriteria().andFirstnameEqualTo("Fred").andLastnameIsNull().andId1EqualTo(3).andId2EqualTo(4);
        long returnedRows = dao.countByExample(example);
        assertEquals(1, returnedRows);
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : SQLException(java.sql.SQLException) Pkfields(mbg.test.ib2j5.generated.conditional.model.Pkfields) PkfieldsExample(mbg.test.ib2j5.generated.conditional.model.PkfieldsExample) PkfieldsDAO(mbg.test.ib2j5.generated.conditional.dao.PkfieldsDAO) Test(org.junit.Test)

Example 10 with Pkfields

use of mbg.test.mb3.generated.conditional.model.Pkfields in project generator by mybatis.

the class ConditionalJava5Test method testPKFieldsSelectByExampleBetween.

@Test
public void testPKFieldsSelectByExampleBetween() {
    PkfieldsDAO dao = getPkfieldsDAO();
    try {
        Pkfields record = new Pkfields();
        record.setFirstname("Fred");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(1);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Wilma");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(2);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Pebbles");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(3);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Barney");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(1);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Betty");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(2);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Bamm Bamm");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(3);
        dao.insert(record);
        PkfieldsExample example = new PkfieldsExample();
        example.createCriteria().andId2Between(1, 3);
        example.setOrderByClause("ID1, ID2");
        List<Pkfields> answer = dao.selectByExample(example);
        assertEquals(6, answer.size());
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : SQLException(java.sql.SQLException) Pkfields(mbg.test.ib2j5.generated.conditional.model.Pkfields) PkfieldsExample(mbg.test.ib2j5.generated.conditional.model.PkfieldsExample) PkfieldsDAO(mbg.test.ib2j5.generated.conditional.dao.PkfieldsDAO) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)242 SqlSession (org.apache.ibatis.session.SqlSession)208 ArrayList (java.util.ArrayList)33 Pkfields (mbg.test.mb3.generated.annotated.flat.model.Pkfields)23 Pkfields (mbg.test.mb3.generated.flat.model.Pkfields)23 Pkfields (mbg.test.mb3.generated.mixed.flat.model.Pkfields)23 PkfieldsMapper (mbg.test.mb3.generated.annotated.conditional.mapper.PkfieldsMapper)17 Pkfields (mbg.test.mb3.generated.annotated.conditional.model.Pkfields)17 PkfieldsMapper (mbg.test.mb3.generated.annotated.flat.mapper.PkfieldsMapper)17 PkfieldsMapper (mbg.test.mb3.generated.conditional.mapper.PkfieldsMapper)17 Pkfields (mbg.test.mb3.generated.conditional.model.Pkfields)17 PkfieldsMapper (mbg.test.mb3.generated.flat.mapper.PkfieldsMapper)17 PkfieldsMapper (mbg.test.mb3.generated.mixed.conditional.mapper.PkfieldsMapper)17 Pkfields (mbg.test.mb3.generated.mixed.conditional.model.Pkfields)17 PkfieldsMapper (mbg.test.mb3.generated.mixed.flat.mapper.PkfieldsMapper)17 BigDecimal (java.math.BigDecimal)16 PkfieldsDAO (mbg.test.ib2j2.generated.conditional.dao.PkfieldsDAO)16 Pkfields (mbg.test.ib2j2.generated.conditional.model.Pkfields)16 PkfieldsMapper (mbg.test.mb3.generated.annotated.hierarchical.Immutable.Mapper.PkfieldsMapper)16 Pkfields (mbg.test.mb3.generated.annotated.hierarchical.Immutable.Model.Pkfields)16