• Mybatis中example类的使用


    要使用example类,先要在项目中导入mybatis.mapper的jar包。

    Mapper接口中包含了单表的增删改查以及分页功能。

    给出实例:

    CountryMappermapper = sqlSession.getMapper(Country.class);

    //Country.class是实体类

    //查询操作

    List<Country>cList = mapper.select(new Country());

    现在使用Example查询

    Example example =new Example(Country.class);

    example.createCriteria().andEqualTo(“id”,100);

    //这里给出查询为id=100

    cList = mapper.selectByExample(example);

    example.setOrderByClause(“字段名ASC”); 以某字段升序排序

    example.setDistinct(false)//去除重复,boolean型,true为选择不重复的记录

    selectByExample()返回的是一个集合

    mybatis中mapper的实例函数:
    int countByExample(UserExample example) thorws SQLException:按条件计数。
    int deleteByPrimaryKey(Integer id) thorws SQLException:按主键删除。
    int deleteByExample(UserExample example) thorws SQLException:按条件删除。
    String/Integer insert(User record) thorws SQLException:插入(返回值为id值)
    User selectByPrimaryKey(Integer id) thorws SQLException:按主键查询。
    List<?>selectByExample(UserExample example) thorws SQLException:按条件查询
    List<?>selectByExampleWithBLOGs(UserExample example) thorws SQLException:按

    条件查询(包括BLOB字段)。只有当数据表中的字段类型有为二进制的才会产生。
    int updateByPrimaryKey(User record) thorws SQLException:按主键更新
    int updateByPrimaryKeySelective(User record) thorws SQLException:按主键更新值不为null的字段

    int updateByExample(User record, UserExample example) thorws SQLException: 按条件更新

    int updateByExampleSelective(User record, UserExample example)thorws  

    SQLException:按条件更新值不为null的字段

    mybatis中mapper的实例函数详解:
     selectByPrimaryKey()

    Country country = ##Mapper.selectByPrimaryKey(100);

    相当于select * from user where id = 100

    还有一些方法不在这里赘述,可以参考mybatis中的example

    转自 http://blog.csdn.net/qq_36743013/article/details/71144508

  • 相关阅读:
    tar解压包的时候出现错误 gzip: stdin: not in gzip format
    解决Ubuntu刚装好的时候su命令密码错误的问题
    如何将Ubuntu左边的面板放到底部
    解决VMware安装Ubuntu的过程中窗口过小无法看到按钮的问题
    无法对视图创建索引,因为该视图未绑定到架构
    Matlab当中size() length()等函数讲解
    解决Matlab当中for循环运行慢的问题
    SqlServer如何获取存储过程的返回值
    Linux的五个查找命令
    linux安装redis官方教程
  • 原文地址:https://www.cnblogs.com/mh-study/p/9388117.html
Copyright © 2020-2023  润新知