Examples of Pkonly


Examples of mbg.test.ib2j5.generated.flat.model.Pkonly

    @Test
    public void testPKOnlyDeleteByExample() {
        PkonlyDAO dao = getPkonlyDAO();

        try {
            Pkonly key = new Pkonly();
            key.setId(1);
            key.setSeqNum(3);
            dao.insert(key);

            key = new Pkonly();
            key.setId(5);
            key.setSeqNum(6);
            dao.insert(key);

            key = new Pkonly();
            key.setId(7);
            key.setSeqNum(8);
            dao.insert(key);

            PkonlyExample example = new PkonlyExample();
            example.createCriteria().andIdGreaterThan(4);
            int rows = dao.deleteByExample(example);
View Full Code Here

Examples of mbg.test.ib2j5.generated.flat.model.Pkonly

    @Test
    public void testPKOnlySelectByExample() {
        PkonlyDAO dao = getPkonlyDAO();

        try {
            Pkonly key = new Pkonly();
            key.setId(1);
            key.setSeqNum(3);
            dao.insert(key);

            key = new Pkonly();
            key.setId(5);
            key.setSeqNum(6);
            dao.insert(key);

            key = new Pkonly();
            key.setId(7);
            key.setSeqNum(8);
            dao.insert(key);

            PkonlyExample example = new PkonlyExample();
            example.createCriteria().andIdGreaterThan(4);
            List<Pkonly> answer = dao.selectByExample(example);
View Full Code Here

Examples of mbg.test.ib2j5.generated.flat.model.Pkonly

    @Test
    public void testPKOnlySelectByExampleNoCriteria() {
        PkonlyDAO dao = getPkonlyDAO();

        try {
            Pkonly key = new Pkonly();
            key.setId(1);
            key.setSeqNum(3);
            dao.insert(key);

            key = new Pkonly();
            key.setId(5);
            key.setSeqNum(6);
            dao.insert(key);

            key = new Pkonly();
            key.setId(7);
            key.setSeqNum(8);
            dao.insert(key);

            PkonlyExample example = new PkonlyExample();
            example.createCriteria();
            List<Pkonly> answer = dao.selectByExample(example);
View Full Code Here

Examples of mbg.test.ib2j5.generated.flat.model.Pkonly

    @Test
    public void testPKOnlyCountByExample() {
        PkonlyDAO dao = getPkonlyDAO();

        try {
            Pkonly key = new Pkonly();
            key.setId(1);
            key.setSeqNum(3);
            dao.insert(key);

            key = new Pkonly();
            key.setId(5);
            key.setSeqNum(6);
            dao.insert(key);

            key = new Pkonly();
            key.setId(7);
            key.setSeqNum(8);
            dao.insert(key);

            PkonlyExample example = new PkonlyExample();
            example.createCriteria().andIdGreaterThan(4);
            int rows = dao.countByExample(example);
View Full Code Here

Examples of mbg.test.ib2j5.generated.flat.model.Pkonly

    @Test
    public void testPKOnlyUpdateByExampleSelective() {
        PkonlyDAO dao = getPkonlyDAO();

        try {
            Pkonly key = new Pkonly();
            key.setId(1);
            key.setSeqNum(3);
            dao.insert(key);

            key = new Pkonly();
            key.setId(5);
            key.setSeqNum(6);
            dao.insert(key);

            key = new Pkonly();
            key.setId(7);
            key.setSeqNum(8);
            dao.insert(key);

            PkonlyExample example = new PkonlyExample();
            example.createCriteria().andIdGreaterThan(4);
            key = new Pkonly();
            key.setSeqNum(3);
            int rows = dao.updateByExampleSelective(key, example);
            assertEquals(2, rows);

            example.clear();
            example.createCriteria()
View Full Code Here

Examples of mbg.test.ib2j5.generated.flat.model.Pkonly

    @Test
    public void testPKOnlyUpdateByExample() {
        PkonlyDAO dao = getPkonlyDAO();

        try {
            Pkonly key = new Pkonly();
            key.setId(1);
            key.setSeqNum(3);
            dao.insert(key);

            key = new Pkonly();
            key.setId(5);
            key.setSeqNum(6);
            dao.insert(key);

            key = new Pkonly();
            key.setId(7);
            key.setSeqNum(8);
            dao.insert(key);

            PkonlyExample example = new PkonlyExample();
            example.createCriteria()
                .andIdEqualTo(7);
            key = new Pkonly();
            key.setSeqNum(3);
            key.setId(22);
            int rows = dao.updateByExample(key, example);
            assertEquals(1, rows);

            example.clear();
            example.createCriteria()
View Full Code Here

Examples of mbg.test.mb3.generated.annotated.flat.model.Pkonly

    public void testPKOnlyInsert() {
        SqlSession sqlSession = sqlSessionFactory.openSession();

        try {
            PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
            Pkonly key = new Pkonly();
            key.setId(1);
            key.setSeqNum(3);
            mapper.insert(key);

            PkonlyExample example = new PkonlyExample();
            List<Pkonly> answer = mapper.selectByExample(example);
            assertEquals(1, answer.size());

            Pkonly returnedRecord = answer.get(0);
            assertEquals(key.getId(), returnedRecord.getId());
            assertEquals(key.getSeqNum(), returnedRecord.getSeqNum());
        } finally {
            sqlSession.close();
        }
    }
View Full Code Here

Examples of mbg.test.mb3.generated.annotated.flat.model.Pkonly

    public void testPKOnlyDeleteByPrimaryKey() {
        SqlSession sqlSession = sqlSessionFactory.openSession();

        try {
            PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
            Pkonly key = new Pkonly();
            key.setId(1);
            key.setSeqNum(3);
            int rows = mapper.insert(key);

            key = new Pkonly();
            key.setId(5);
            key.setSeqNum(6);
            rows = mapper.insert(key);

            PkonlyExample example = new PkonlyExample();
            List<Pkonly> answer = mapper.selectByExample(example);
            assertEquals(2, answer.size());
View Full Code Here

Examples of mbg.test.mb3.generated.annotated.flat.model.Pkonly

    public void testPKOnlyDeleteByExample() {
        SqlSession sqlSession = sqlSessionFactory.openSession();

        try {
            PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
            Pkonly key = new Pkonly();
            key.setId(1);
            key.setSeqNum(3);
            mapper.insert(key);

            key = new Pkonly();
            key.setId(5);
            key.setSeqNum(6);
            mapper.insert(key);

            key = new Pkonly();
            key.setId(7);
            key.setSeqNum(8);
            mapper.insert(key);

            PkonlyExample example = new PkonlyExample();
            example.createCriteria().andIdGreaterThan(4);
            int rows = mapper.deleteByExample(example);
View Full Code Here

Examples of mbg.test.mb3.generated.annotated.flat.model.Pkonly

    public void testPKOnlySelectByExample() {
        SqlSession sqlSession = sqlSessionFactory.openSession();

        try {
            PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
            Pkonly key = new Pkonly();
            key.setId(1);
            key.setSeqNum(3);
            mapper.insert(key);

            key = new Pkonly();
            key.setId(5);
            key.setSeqNum(6);
            mapper.insert(key);

            key = new Pkonly();
            key.setId(7);
            key.setSeqNum(8);
            mapper.insert(key);

            PkonlyExample example = new PkonlyExample();
            example.createCriteria().andIdGreaterThan(4);
            List<Pkonly> answer = mapper.selectByExample(example);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.