Search in sources :

Example 51 with PkfieldsDAO

use of mbg.test.ib2j2.generated.conditional.dao.PkfieldsDAO in project generator by mybatis.

the class FlatJava2Test 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);
        int rows = dao.deleteByPrimaryKey(new Integer(2), new Integer(1));
        assertEquals(1, rows);
        PkfieldsExample example = new PkfieldsExample();
        List answer = dao.selectByExample(example);
        assertEquals(0, answer.size());
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : SQLException(java.sql.SQLException) Pkfields(mbg.test.ib2j2.generated.flat.model.Pkfields) PkfieldsExample(mbg.test.ib2j2.generated.flat.model.PkfieldsExample) ArrayList(java.util.ArrayList) List(java.util.List) PkfieldsDAO(mbg.test.ib2j2.generated.flat.dao.PkfieldsDAO)

Example 52 with PkfieldsDAO

use of mbg.test.ib2j2.generated.conditional.dao.PkfieldsDAO in project generator by mybatis.

the class FlatJava2Test method testPKFieldsUpdateByPrimaryKeySelective.

public void testPKFieldsUpdateByPrimaryKeySelective() {
    PkfieldsDAO dao = getPkfieldsDAO();
    try {
        Pkfields record = new Pkfields();
        record.setFirstname("Jeff");
        record.setLastname("Smith");
        record.setDecimal60field(new Integer(5));
        record.setId1(new Integer(1));
        record.setId2(new Integer(2));
        dao.insert(record);
        Pkfields newRecord = new Pkfields();
        newRecord.setId1(new Integer(1));
        newRecord.setId2(new Integer(2));
        newRecord.setFirstname("Scott");
        newRecord.setDecimal60field(new Integer(4));
        int rows = dao.updateByPrimaryKeySelective(newRecord);
        assertEquals(1, rows);
        Pkfields returnedRecord = dao.selectByPrimaryKey(new Integer(2), new Integer(1));
        assertTrue(TestUtilities.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(TestUtilities.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.ib2j2.generated.flat.model.Pkfields) PkfieldsDAO(mbg.test.ib2j2.generated.flat.dao.PkfieldsDAO)

Example 53 with PkfieldsDAO

use of mbg.test.ib2j2.generated.conditional.dao.PkfieldsDAO in project generator by mybatis.

the class FlatJava2Test method testPKFieldsSelectByExampleEscapedFields.

public void testPKFieldsSelectByExampleEscapedFields() {
    PkfieldsDAO dao = getPkfieldsDAO();
    try {
        Pkfields record = new Pkfields();
        record.setFirstname("Fred");
        record.setLastname("Flintstone");
        record.setId1(new Integer(1));
        record.setId2(new Integer(1));
        record.setWierdField(new Integer(11));
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Wilma");
        record.setLastname("Flintstone");
        record.setId1(new Integer(1));
        record.setId2(new Integer(2));
        record.setWierdField(new Integer(22));
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Pebbles");
        record.setLastname("Flintstone");
        record.setId1(new Integer(1));
        record.setId2(new Integer(3));
        record.setWierdField(new Integer(33));
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Barney");
        record.setLastname("Rubble");
        record.setId1(new Integer(2));
        record.setId2(new Integer(1));
        record.setWierdField(new Integer(44));
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Betty");
        record.setLastname("Rubble");
        record.setId1(new Integer(2));
        record.setId2(new Integer(2));
        record.setWierdField(new Integer(55));
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Bamm Bamm");
        record.setLastname("Rubble");
        record.setId1(new Integer(2));
        record.setId2(new Integer(3));
        record.setWierdField(new Integer(66));
        dao.insert(record);
        List values = new ArrayList();
        values.add(new Integer(11));
        values.add(new Integer(22));
        PkfieldsExample example = new PkfieldsExample();
        example.createCriteria().andWierdFieldLessThan(new Integer(40)).andWierdFieldIn(values);
        example.setOrderByClause("ID1, ID2");
        List answer = dao.selectByExample(example);
        assertEquals(2, answer.size());
    } catch (SQLException e) {
        fail(e.getMessage());
    }
}
Also used : SQLException(java.sql.SQLException) ArrayList(java.util.ArrayList) Pkfields(mbg.test.ib2j2.generated.flat.model.Pkfields) ArrayList(java.util.ArrayList) List(java.util.List) PkfieldsExample(mbg.test.ib2j2.generated.flat.model.PkfieldsExample) PkfieldsDAO(mbg.test.ib2j2.generated.flat.dao.PkfieldsDAO)

Example 54 with PkfieldsDAO

use of mbg.test.ib2j2.generated.conditional.dao.PkfieldsDAO in project generator by mybatis.

the class UpdateByExampleTest method testPKFieldsUpdateByExampleSelective.

@Test
public void testPKFieldsUpdateByExampleSelective() {
    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");
        PkfieldsExample example = new PkfieldsExample();
        example.createCriteria().andLastnameLike("J%");
        int rows = dao.updateByExampleSelective(record, example);
        assertEquals(1, rows);
        example.clear();
        example.createCriteria().andFirstnameEqualTo("Fred").andLastnameEqualTo("Jones").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 55 with PkfieldsDAO

use of mbg.test.ib2j2.generated.conditional.dao.PkfieldsDAO in project generator by mybatis.

the class ConditionalJava5Test method testPKFieldsSelectByExampleEscapedFields.

@Test
public void testPKFieldsSelectByExampleEscapedFields() {
    PkfieldsDAO dao = getPkfieldsDAO();
    try {
        Pkfields record = new Pkfields();
        record.setFirstname("Fred");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(1);
        record.setWierdField(11);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Wilma");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(2);
        record.setWierdField(22);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Pebbles");
        record.setLastname("Flintstone");
        record.setId1(1);
        record.setId2(3);
        record.setWierdField(33);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Barney");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(1);
        record.setWierdField(44);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Betty");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(2);
        record.setWierdField(55);
        dao.insert(record);
        record = new Pkfields();
        record.setFirstname("Bamm Bamm");
        record.setLastname("Rubble");
        record.setId1(2);
        record.setId2(3);
        record.setWierdField(66);
        dao.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 = dao.selectByExample(example);
        assertEquals(2, answer.size());
    } 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)

Aggregations

SQLException (java.sql.SQLException)47 ArrayList (java.util.ArrayList)27 List (java.util.List)27 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 Test (org.junit.Test)16 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 PkfieldsKey (mbg.test.ib2j2.generated.conditional.model.PkfieldsKey)5 PkfieldsKey (mbg.test.ib2j2.generated.hierarchical.model.PkfieldsKey)5 PkfieldsKey (mbg.test.ib2j5.generated.conditional.model.PkfieldsKey)5 BigDecimal (java.math.BigDecimal)4