Search in sources :

Example 36 with Pkfields

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

the class ConditionalJava5Test method testPKFieldsSelectByPrimaryKey.

@Test
public void testPKFieldsSelectByPrimaryKey() {
    SqlSession sqlSession = sqlSessionFactory.openSession();
    try {
        PkfieldsMapper mapper = sqlSession.getMapper(PkfieldsMapper.class);
        Pkfields record = new Pkfields();
        record.setFirstname("Jeff");
        record.setLastname("Smith");
        record.setId1(1);
        record.setId2(2);
        mapper.insert(record);
        record = new Pkfields();
        record.setFirstname("Bob");
        record.setLastname("Jones");
        record.setId1(3);
        record.setId2(4);
        mapper.insert(record);
        PkfieldsKey key = new PkfieldsKey();
        key.setId1(3);
        key.setId2(4);
        Pkfields newRecord = mapper.selectByPrimaryKey(key);
        assertNotNull(newRecord);
        assertEquals(record.getFirstname(), newRecord.getFirstname());
        assertEquals(record.getLastname(), newRecord.getLastname());
        assertEquals(record.getId1(), newRecord.getId1());
        assertEquals(record.getId2(), newRecord.getId2());
    } finally {
        sqlSession.close();
    }
}
Also used : SqlSession(org.apache.ibatis.session.SqlSession) PkfieldsMapper(mbg.test.mb3.generated.conditional.mapper.PkfieldsMapper) Pkfields(mbg.test.mb3.generated.conditional.model.Pkfields) PkfieldsKey(mbg.test.mb3.generated.conditional.model.PkfieldsKey) Test(org.junit.Test)

Example 37 with Pkfields

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

the class ConditionalJava5Test method testPKFieldsSelectByExampleEscapedFields.

@Test
public void testPKFieldsSelectByExampleEscapedFields() {
    SqlSession sqlSession = sqlSessionFactory.openSession();
    try {
        PkfieldsMapper mapper = sqlSession.getMapper(PkfieldsMapper.class);
        Pkfields record = new Pkfields();
        record.setFirstname("Fred");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(1);
        record.setWierdField(11);
        mapper.insert(record);
        record = new Pkfields();
        record.setFirstname("Wilma");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(2);
        record.setWierdField(22);
        mapper.insert(record);
        record = new Pkfields();
        record.setFirstname("Pebbles");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(3);
        record.setWierdField(33);
        mapper.insert(record);
        record = new Pkfields();
        record.setFirstname("Barney");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(1);
        record.setWierdField(44);
        mapper.insert(record);
        record = new Pkfields();
        record.setFirstname("Betty");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(2);
        record.setWierdField(55);
        mapper.insert(record);
        record = new Pkfields();
        record.setFirstname("Bamm Bamm");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(3);
        record.setWierdField(66);
        mapper.insert(record);
        List<Integer> values = new ArrayList<Integer>();
        values.add(11);
        values.add(22);
        PkfieldsExample example = new PkfieldsExample();
        example.createCriteria().andWierdFieldLessThan(40).andWierdFieldIn(values);
        example.setOrderByClause("ID1, ID2");
        List<Pkfields> answer = mapper.selectByExample(example);
        assertEquals(2, answer.size());
    } finally {
        sqlSession.close();
    }
}
Also used : SqlSession(org.apache.ibatis.session.SqlSession) PkfieldsMapper(mbg.test.mb3.generated.conditional.mapper.PkfieldsMapper) ArrayList(java.util.ArrayList) Pkfields(mbg.test.mb3.generated.conditional.model.Pkfields) PkfieldsExample(mbg.test.mb3.generated.conditional.model.PkfieldsExample) Test(org.junit.Test)

Example 38 with Pkfields

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

the class DeleteByExampleTest method testPKFieldsDeleteByExample.

public void testPKFieldsDeleteByExample() {
    PkfieldsDAO dao = getPkfieldsDAO();
    try {
        Pkfields record = new Pkfields();
        record.setFirstname("Jeff");
        record.setLastname("Smith");
        record.setId1(new Integer(1));
        record.setId2(new Integer(2));
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Bob");
        record.setLastname("Jones");
        record.setId1(new Integer(3));
        record.setId2(new Integer(4));
        dao.insert(record);
        PkfieldsExample example = new PkfieldsExample();
        List 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.ib2j2.generated.conditional.model.Pkfields) PkfieldsExample(mbg.test.ib2j2.generated.conditional.model.PkfieldsExample) List(java.util.List) PkfieldsDAO(mbg.test.ib2j2.generated.conditional.dao.PkfieldsDAO)

Example 39 with Pkfields

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

the class DeleteByPrimaryKeyTest method testPKfieldsDeleteByPrimaryKey.

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

Example 40 with Pkfields

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

the class InsertTest method testPKFieldsInsert.

public void testPKFieldsInsert() {
    PkfieldsDAO dao = getPkfieldsDAO();
    try {
        Pkfields record = new Pkfields();
        record.setDatefield(new Date());
        record.setDecimal100field(new Long(10L));
        record.setDecimal155field(new BigDecimal("15.12345"));
        record.setDecimal30field(new Short((short) 3));
        record.setDecimal60field(new Integer(6));
        record.setFirstname("Jeff");
        record.setId1(new Integer(1));
        record.setId2(new Integer(2));
        record.setLastname("Butler");
        record.setTimefield(new Date());
        record.setTimestampfield(new Date());
        dao.insert(record);
        PkfieldsKey key = new PkfieldsKey();
        key.setId1(new Integer(1));
        key.setId2(new Integer(2));
        Pkfields returnedRecord = dao.selectByPrimaryKey(key);
        assertNotNull(returnedRecord);
        assertTrue(TestUtilities.datesAreEqual(record.getDatefield(), returnedRecord.getDatefield()));
        assertEquals(record.getDecimal100field(), returnedRecord.getDecimal100field());
        assertEquals(record.getDecimal155field(), returnedRecord.getDecimal155field());
        assertEquals(record.getDecimal30field(), returnedRecord.getDecimal30field());
        assertEquals(record.getDecimal60field(), returnedRecord.getDecimal60field());
        assertEquals(record.getFirstname(), returnedRecord.getFirstname());
        assertEquals(record.getId1(), returnedRecord.getId1());
        assertEquals(record.getId2(), returnedRecord.getId2());
        assertEquals(record.getLastname(), returnedRecord.getLastname());
        assertTrue(TestUtilities.timesAreEqual(record.getTimefield(), returnedRecord.getTimefield()));
        assertEquals(record.getTimestampfield(), returnedRecord.getTimestampfield());
    } catch (Exception e) {
        fail(e.getMessage());
    }
}
Also used : Pkfields(mbg.test.ib2j2.generated.conditional.model.Pkfields) PkfieldsKey(mbg.test.ib2j2.generated.conditional.model.PkfieldsKey) Date(java.util.Date) BigDecimal(java.math.BigDecimal) PkfieldsDAO(mbg.test.ib2j2.generated.conditional.dao.PkfieldsDAO)

Aggregations

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