Search in sources :

Example 61 with Pkfields

use of mbg.test.ib2j5.generated.flat.model.Pkfields in project generator by mybatis.

the class ConditionalJava5Test method testPKFieldsSelectByExampleComplexLike.

@Test
public void testPKFieldsSelectByExampleComplexLike() {
    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%").andId2EqualTo(3);
        example.or(example.createCriteria().andFirstnameLike("Wi%"));
        example.setOrderByClause("ID1, ID2");
        List<Pkfields> answer = dao.selectByExample(example);
        assertEquals(2, answer.size());
        Pkfields returnedRecord = answer.get(0);
        assertEquals(1, returnedRecord.getId1().intValue());
        assertEquals(2, returnedRecord.getId2().intValue());
        returnedRecord = answer.get(1);
        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 62 with Pkfields

use of mbg.test.ib2j5.generated.flat.model.Pkfields in project generator by mybatis.

the class ConditionalJava5Test method testPKFieldsSelectByPrimaryKey.

@Test
public void testPKFieldsSelectByPrimaryKey() {
    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);
        PkfieldsKey key = new PkfieldsKey();
        key.setId1(3);
        key.setId2(4);
        Pkfields newRecord = dao.selectByPrimaryKey(key);
        assertNotNull(newRecord);
        assertEquals(record.getFirstname(), newRecord.getFirstname());
        assertEquals(record.getLastname(), newRecord.getLastname());
        assertEquals(record.getId1(), newRecord.getId1());
        assertEquals(record.getId2(), newRecord.getId2());
    } 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 63 with Pkfields

use of mbg.test.ib2j5.generated.flat.model.Pkfields in project generator by mybatis.

the class ConditionalJava5Test method testPKFieldsSelectByExampleNoCriteria.

@Test
public void testPKFieldsSelectByExampleNoCriteria() {
    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();
        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)

Example 64 with Pkfields

use of mbg.test.ib2j5.generated.flat.model.Pkfields in project generator by mybatis.

the class ConditionalJava5Test method testPKFieldsSelectByExampleIn.

@Test
public void testPKFieldsSelectByExampleIn() {
    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);
        List<Integer> ids = new ArrayList<Integer>();
        ids.add(1);
        ids.add(3);
        PkfieldsExample example = new PkfieldsExample();
        example.createCriteria().andId2In(ids);
        example.setOrderByClause("ID1, ID2");
        List<Pkfields> answer = dao.selectByExample(example);
        assertEquals(4, answer.size());
        Pkfields returnedRecord = answer.get(0);
        assertEquals(1, returnedRecord.getId1().intValue());
        assertEquals(1, returnedRecord.getId2().intValue());
        returnedRecord = answer.get(1);
        assertEquals(1, returnedRecord.getId1().intValue());
        assertEquals(3, returnedRecord.getId2().intValue());
        returnedRecord = answer.get(2);
        assertEquals(2, returnedRecord.getId1().intValue());
        assertEquals(1, returnedRecord.getId2().intValue());
        returnedRecord = answer.get(3);
        assertEquals(2, returnedRecord.getId1().intValue());
        assertEquals(3, returnedRecord.getId2().intValue());
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : SQLException(java.sql.SQLException) ArrayList(java.util.ArrayList) 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 65 with Pkfields

use of mbg.test.ib2j5.generated.flat.model.Pkfields in project generator by mybatis.

the class HierarchicalJava5Test method testPKFieldsDeleteByExample.

@Test
public void testPKFieldsDeleteByExample() {
    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);
        PkfieldsExample example = new PkfieldsExample();
        List<Pkfields> answer = dao.selectByExample(example);
        assertEquals(2, answer.size());
        example = new PkfieldsExample();
        example.createCriteria().andLastnameLike("J%");
        int rows = dao.deleteByExample(example);
        assertEquals(1, rows);
        example = new PkfieldsExample();
        answer = dao.selectByExample(example);
        assertEquals(1, answer.size());
    } catch (Exception e) {
        fail(e.getMessage());
    }
}
Also used : Pkfields(mbg.test.ib2j5.generated.hierarchical.model.Pkfields) PkfieldsExample(mbg.test.ib2j5.generated.hierarchical.model.PkfieldsExample) PkfieldsDAO(mbg.test.ib2j5.generated.hierarchical.dao.PkfieldsDAO) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)54 SQLException (java.sql.SQLException)47 Pkfields (mbg.test.mb3.generated.flat.model.Pkfields)23 Test (org.junit.jupiter.api.Test)23 Pkfields (mbg.test.ib2j5.generated.flat.model.Pkfields)22 ArrayList (java.util.ArrayList)17 PkfieldsMapper (mbg.test.mb3.generated.flat.mapper.PkfieldsMapper)17 SqlSession (org.apache.ibatis.session.SqlSession)17 PkfieldsDAO (mbg.test.ib2j2.generated.flat.dao.PkfieldsDAO)16 Pkfields (mbg.test.ib2j2.generated.flat.model.Pkfields)16 PkfieldsDAO (mbg.test.ib2j5.generated.conditional.dao.PkfieldsDAO)16 Pkfields (mbg.test.ib2j5.generated.conditional.model.Pkfields)16 PkfieldsDAO (mbg.test.ib2j5.generated.flat.dao.PkfieldsDAO)16 PkfieldsDAO (mbg.test.ib2j5.generated.hierarchical.dao.PkfieldsDAO)16 Pkfields (mbg.test.ib2j5.generated.hierarchical.model.Pkfields)16 PkfieldsExample (mbg.test.mb3.generated.flat.model.PkfieldsExample)13 PkfieldsExample (mbg.test.ib2j2.generated.flat.model.PkfieldsExample)12 PkfieldsExample (mbg.test.ib2j5.generated.conditional.model.PkfieldsExample)12 PkfieldsExample (mbg.test.ib2j5.generated.flat.model.PkfieldsExample)12 PkfieldsExample (mbg.test.ib2j5.generated.hierarchical.model.PkfieldsExample)12