zoukankan      html  css  js  c++  java
  • mybatis 数据库.xml中方法参考

    ① selectByPrimaryKey()

    User user = userDAO.selectByPrimaryKey(100); 相当于select * from user where id = 100

    ② selectByExample() 和 selectByExampleWithBLOGs()

    UserExample example = new UserExample();
    Criteria criteria = example.createCriteria();
    criteria.andUsernameEqualTo("joe");
    criteria.andUsernameIsNull();
    example.setOrderByClause("username asc,email desc");
    List<?>list = userDAO.selectByExample(example);
    相当于:select * from user where username = 'joe' and username is null order by username asc,email desc

    注:在iBator 生成的文件UserExample.java中包含一个static 的内部类 Criteria ,在Criteria中有很多方法,主要是定义SQL 语句where后的查询条件。

    ③ insert()

    User user = new User();
    user.setId(101);
    user.setUsername("test");
    user.setPassword("123")
    user.setEmail("joe@163.com");
    userDAO.insert(user);
    相当于:insert into user(ID,username,password,email) values(101,'test','123','joe@163.com');

     ④ updateByPrimaryKey() 和 updateByPrimaryKeySelective()

    User user =new User();
    user.setId(101);
    user.setUsername("joe");
    user.setPassword("joe");
    user.setEmail("joe@163.com");
    userDAO.updateByPrimaryKey(user);
    相当于:update user set username='joe',password='joe',email='joe@163.com' where id=101

    User user = new User();
    user.setId(101);
    user.setPassword("joe");
    userDAO.updateByPrimaryKeySelective(user);
    相当于:
    update user set password='joe' where id=101

     updateByExample() 和 updateByExampleSelective()

    UserExample example = new UserExample();
    Criteria criteria = example.createCriteria();
    criteria.andUsernameEqualTo("joe");
    User user = new User();
    user.setPassword("123");
    userDAO.updateByPrimaryKeySelective(user,example);
    相当于:update user set password='123' where username='joe'

     deleteByPrimaryKey()

    userDAO.deleteByPrimaryKey(101);  相当于:delete from user where id=101

    ⑦ deleteByExample()

    UserExample example = new UserExample();
    Criteria criteria = example.createCriteria();
    criteria.andUsernameEqualTo("joe");
    userDAO.deleteByExample(example);
    相当于:delete from user where username='joe'

    ⑧ countByExample()

    UserExample example = new UserExample();
    Criteria criteria = example.createCriteria();
    criteria.andUsernameEqualTo("joe");
    int count = userDAO.countByExample(example);
    相当于:select count(*) from user where username='joe'

  • 相关阅读:
    不同的ospf进程发布互联网段可以互通
    大数分解
    主席树(非权值)
    块状数组
    Codeforces Round #744 (Div. 3) G. Minimal Coverage
    记录一种从天而降的掌法(动态维护中位数的方法)
    快速统计二进制中1的数量
    网络流(小常数)
    矩阵快速幂
    米勒罗宾素性检验
  • 原文地址:https://www.cnblogs.com/zhenmingliu/p/2502261.html
Copyright © 2011-2022 走看看