美文网首页
mybatis一些方法详解

mybatis一些方法详解

作者: shenyoujian | 来源:发表于2018-09-09 17:46 被阅读7次

    https://blog.csdn.net/kenhins/article/details/44939873
    其中

    条件查询(包括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的字段
    
    

    其中不为null,是你传进去的对象有不为nul的值l它就按你传进去的值去更新数据库里的值,而不是数据库里不为null的更新。updateByPrimaryKeySelective和updateByExampleSelective这个等同。

    相关文章

      网友评论

          本文标题:mybatis一些方法详解

          本文链接:https://www.haomeiwen.com/subject/qaddgftx.html