Search in sources :

Example 1 with PkfieldsExample

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

the class ConditionalJava5Test method testPKFieldsCountByExample.

@Test
public void testPKFieldsCountByExample() {
    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();
        example.createCriteria().andLastnameLike("J%");
        long rows = dao.countByExample(example);
        assertEquals(1, rows);
        example.clear();
        rows = dao.countByExample(example);
        assertEquals(2, rows);
    } 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 2 with PkfieldsExample

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

the class ConditionalJava5Test method testPKFieldsSelectByExampleNotLike.

@Test
public void testPKFieldsSelectByExampleNotLike() {
    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().andFirstnameNotLike("B%");
        example.setOrderByClause("ID1, ID2");
        List<Pkfields> answer = dao.selectByExample(example);
        assertEquals(3, 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(2, returnedRecord.getId2().intValue());
        returnedRecord = answer.get(2);
        assertEquals(1, 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 3 with PkfieldsExample

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

the class ConditionalJava5Test 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 (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 4 with PkfieldsExample

use of mbg.test.mb3.generated.conditional.model.PkfieldsExample 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 5 with PkfieldsExample

use of mbg.test.mb3.generated.conditional.model.PkfieldsExample 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)

Aggregations

SqlSession (org.apache.ibatis.session.SqlSession)164 Test (org.junit.jupiter.api.Test)164 ArrayList (java.util.ArrayList)35 PkfieldsMapper (mbg.test.mb3.generated.annotated.conditional.mapper.PkfieldsMapper)13 Pkfields (mbg.test.mb3.generated.annotated.conditional.model.Pkfields)13 PkfieldsExample (mbg.test.mb3.generated.annotated.conditional.model.PkfieldsExample)13 PkfieldsMapper (mbg.test.mb3.generated.annotated.flat.mapper.PkfieldsMapper)13 Pkfields (mbg.test.mb3.generated.annotated.flat.model.Pkfields)13 PkfieldsExample (mbg.test.mb3.generated.annotated.flat.model.PkfieldsExample)13 PkfieldsMapper (mbg.test.mb3.generated.annotated.hierarchical.mapper.PkfieldsMapper)13 Pkfields (mbg.test.mb3.generated.annotated.hierarchical.model.Pkfields)13 PkfieldsExample (mbg.test.mb3.generated.annotated.hierarchical.model.PkfieldsExample)13 PkfieldsMapper (mbg.test.mb3.generated.conditional.mapper.PkfieldsMapper)13 Pkfields (mbg.test.mb3.generated.conditional.model.Pkfields)13 PkfieldsExample (mbg.test.mb3.generated.conditional.model.PkfieldsExample)13 PkfieldsMapper (mbg.test.mb3.generated.mixed.conditional.mapper.PkfieldsMapper)13 Pkfields (mbg.test.mb3.generated.mixed.conditional.model.Pkfields)13 PkfieldsExample (mbg.test.mb3.generated.mixed.conditional.model.PkfieldsExample)13 PkfieldsMapper (mbg.test.mb3.generated.mixed.flat.mapper.PkfieldsMapper)13 Pkfields (mbg.test.mb3.generated.mixed.flat.model.Pkfields)13