mybatis一些方法详解

2018-09-09  本文已影响7人  shenyoujian

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这个等同。

上一篇下一篇

猜你喜欢

热点阅读