Search in sources :

Example 71 with Pkblobs

use of mbg.test.mb3.generated.flat.model.Pkblobs in project generator by mybatis.

the class ConditionalJava5Test method testPKBlobsSelectByExampleWithBlobs.

@Test
public void testPKBlobsSelectByExampleWithBlobs() {
    SqlSession sqlSession = sqlSessionFactory.openSession();
    try {
        PkblobsMapper mapper = sqlSession.getMapper(PkblobsMapper.class);
        Pkblobs record = new Pkblobs();
        record.setId(3);
        record.setBlob1(generateRandomBlob());
        record.setBlob2(generateRandomBlob());
        mapper.insert(record);
        record = new Pkblobs();
        record.setId(6);
        record.setBlob1(generateRandomBlob());
        record.setBlob2(generateRandomBlob());
        mapper.insert(record);
        PkblobsExample example = new PkblobsExample();
        example.createCriteria().andIdGreaterThan(4);
        List<Pkblobs> answer = mapper.selectByExampleWithBLOBs(example);
        assertEquals(1, answer.size());
        Pkblobs newRecord = answer.get(0);
        assertEquals(record.getId(), newRecord.getId());
        assertTrue(blobsAreEqual(record.getBlob1(), newRecord.getBlob1()));
        assertTrue(blobsAreEqual(record.getBlob2(), newRecord.getBlob2()));
    } finally {
        sqlSession.close();
    }
}
Also used : PkblobsExample(mbg.test.mb3.generated.annotated.conditional.model.PkblobsExample) SqlSession(org.apache.ibatis.session.SqlSession) PkblobsMapper(mbg.test.mb3.generated.annotated.conditional.mapper.PkblobsMapper) Pkblobs(mbg.test.mb3.generated.annotated.conditional.model.Pkblobs) Test(org.junit.Test)

Example 72 with Pkblobs

use of mbg.test.mb3.generated.flat.model.Pkblobs in project generator by mybatis.

the class ConditionalJava5Test method testPKBlobsCountByExample.

@Test
public void testPKBlobsCountByExample() {
    SqlSession sqlSession = sqlSessionFactory.openSession();
    try {
        PkblobsMapper mapper = sqlSession.getMapper(PkblobsMapper.class);
        Pkblobs record = new Pkblobs();
        record.setId(3);
        record.setBlob1(generateRandomBlob());
        record.setBlob2(generateRandomBlob());
        mapper.insert(record);
        record = new Pkblobs();
        record.setId(6);
        record.setBlob1(generateRandomBlob());
        record.setBlob2(generateRandomBlob());
        mapper.insert(record);
        PkblobsExample example = new PkblobsExample();
        example.createCriteria().andIdLessThan(4);
        long rows = mapper.countByExample(example);
        assertEquals(1, rows);
        example.clear();
        rows = mapper.countByExample(example);
        assertEquals(2, rows);
    } finally {
        sqlSession.close();
    }
}
Also used : PkblobsExample(mbg.test.mb3.generated.annotated.conditional.model.PkblobsExample) SqlSession(org.apache.ibatis.session.SqlSession) PkblobsMapper(mbg.test.mb3.generated.annotated.conditional.mapper.PkblobsMapper) Pkblobs(mbg.test.mb3.generated.annotated.conditional.model.Pkblobs) Test(org.junit.Test)

Example 73 with Pkblobs

use of mbg.test.mb3.generated.flat.model.Pkblobs in project generator by mybatis.

the class ConditionalJava5Test method testPKBlobsDeleteByExample.

@Test
public void testPKBlobsDeleteByExample() {
    SqlSession sqlSession = sqlSessionFactory.openSession();
    try {
        PkblobsMapper mapper = sqlSession.getMapper(PkblobsMapper.class);
        Pkblobs record = new Pkblobs();
        record.setId(3);
        record.setBlob1(generateRandomBlob());
        record.setBlob2(generateRandomBlob());
        mapper.insert(record);
        record = new Pkblobs();
        record.setId(6);
        record.setBlob1(generateRandomBlob());
        record.setBlob2(generateRandomBlob());
        mapper.insert(record);
        PkblobsExample example = new PkblobsExample();
        List<Pkblobs> answer = mapper.selectByExample(example);
        assertEquals(2, answer.size());
        example = new PkblobsExample();
        example.createCriteria().andIdLessThan(4);
        int rows = mapper.deleteByExample(example);
        assertEquals(1, rows);
        example = new PkblobsExample();
        answer = mapper.selectByExample(example);
        assertEquals(1, answer.size());
    } finally {
        sqlSession.close();
    }
}
Also used : PkblobsExample(mbg.test.mb3.generated.annotated.conditional.model.PkblobsExample) SqlSession(org.apache.ibatis.session.SqlSession) PkblobsMapper(mbg.test.mb3.generated.annotated.conditional.mapper.PkblobsMapper) Pkblobs(mbg.test.mb3.generated.annotated.conditional.model.Pkblobs) Test(org.junit.Test)

Example 74 with Pkblobs

use of mbg.test.mb3.generated.flat.model.Pkblobs in project generator by mybatis.

the class FlatJava5Test method testPKBlobsUpdateByPrimaryKeySelective.

@Test
public void testPKBlobsUpdateByPrimaryKeySelective() {
    SqlSession sqlSession = sqlSessionFactory.openSession();
    try {
        PkblobsMapper mapper = sqlSession.getMapper(PkblobsMapper.class);
        Pkblobs record = new Pkblobs();
        record.setId(3);
        record.setBlob1(generateRandomBlob());
        record.setBlob2(generateRandomBlob());
        mapper.insert(record);
        Pkblobs newRecord = new Pkblobs();
        newRecord.setId(3);
        newRecord.setBlob2(generateRandomBlob());
        mapper.updateByPrimaryKeySelective(newRecord);
        Pkblobs returnedRecord = mapper.selectByPrimaryKey(3);
        assertNotNull(returnedRecord);
        assertEquals(record.getId(), returnedRecord.getId());
        assertTrue(blobsAreEqual(record.getBlob1(), returnedRecord.getBlob1()));
        assertTrue(blobsAreEqual(newRecord.getBlob2(), returnedRecord.getBlob2()));
    } finally {
        sqlSession.close();
    }
}
Also used : SqlSession(org.apache.ibatis.session.SqlSession) PkblobsMapper(mbg.test.mb3.generated.annotated.flat.mapper.PkblobsMapper) Pkblobs(mbg.test.mb3.generated.annotated.flat.model.Pkblobs) Test(org.junit.Test)

Example 75 with Pkblobs

use of mbg.test.mb3.generated.flat.model.Pkblobs in project generator by mybatis.

the class FlatJava5Test method testPKBlobsDeleteByPrimaryKey.

@Test
public void testPKBlobsDeleteByPrimaryKey() {
    SqlSession sqlSession = sqlSessionFactory.openSession();
    try {
        PkblobsMapper mapper = sqlSession.getMapper(PkblobsMapper.class);
        Pkblobs record = new Pkblobs();
        record.setId(3);
        record.setBlob1(generateRandomBlob());
        record.setBlob2(generateRandomBlob());
        mapper.insert(record);
        PkblobsExample example = new PkblobsExample();
        List<Pkblobs> answer = mapper.selectByExample(example);
        assertEquals(1, answer.size());
        int rows = mapper.deleteByPrimaryKey(3);
        assertEquals(1, rows);
        example = new PkblobsExample();
        answer = mapper.selectByExample(example);
        assertEquals(0, answer.size());
    } finally {
        sqlSession.close();
    }
}
Also used : PkblobsExample(mbg.test.mb3.generated.annotated.flat.model.PkblobsExample) SqlSession(org.apache.ibatis.session.SqlSession) PkblobsMapper(mbg.test.mb3.generated.annotated.flat.mapper.PkblobsMapper) Pkblobs(mbg.test.mb3.generated.annotated.flat.model.Pkblobs) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)93 SqlSession (org.apache.ibatis.session.SqlSession)80 SQLException (java.sql.SQLException)26 PkblobsDAO (mbg.test.ib2j2.generated.flat.dao.PkblobsDAO)13 Pkblobs (mbg.test.ib2j2.generated.flat.model.Pkblobs)13 PkblobsDAO (mbg.test.ib2j5.generated.flat.dao.PkblobsDAO)13 Pkblobs (mbg.test.ib2j5.generated.flat.model.Pkblobs)13 PkblobsMapper (mbg.test.mb3.generated.annotated.conditional.mapper.PkblobsMapper)13 Pkblobs (mbg.test.mb3.generated.annotated.conditional.model.Pkblobs)13 PkblobsMapper (mbg.test.mb3.generated.annotated.flat.mapper.PkblobsMapper)13 Pkblobs (mbg.test.mb3.generated.annotated.flat.model.Pkblobs)13 PkblobsMapper (mbg.test.mb3.generated.conditional.mapper.PkblobsMapper)13 Pkblobs (mbg.test.mb3.generated.conditional.model.Pkblobs)13 PkblobsMapper (mbg.test.mb3.generated.flat.mapper.PkblobsMapper)13 Pkblobs (mbg.test.mb3.generated.flat.model.Pkblobs)13 PkblobsMapper (mbg.test.mb3.generated.mixed.conditional.mapper.PkblobsMapper)13 Pkblobs (mbg.test.mb3.generated.mixed.conditional.model.Pkblobs)13 PkblobsMapper (mbg.test.mb3.generated.mixed.flat.mapper.PkblobsMapper)13 Pkblobs (mbg.test.mb3.generated.mixed.flat.model.Pkblobs)13 PkblobsExample (mbg.test.ib2j2.generated.flat.model.PkblobsExample)10