大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE稳定放心使用
原文地址:http://nkadun.iteye.com/blog/1435333
java api里是这样说的
executeUpdate
int executeUpdate() throws SQLException
Executes the SQL statement in this PreparedStatement object, which must be an SQL INSERT, UPDATE or DELETE statement; or an SQL statement that returns nothing, such as a DDL statement.
Returns:
either (1) the row count for INSERT, UPDATE, or DELETE statements or (2) 0 for SQL statements that return nothing
在使用乐观锁的时候经常需要验证这个返回值来防止并发,但不同的JDBC驱动有不同的实现,并不是所有插入或更新都返回1,最近试了几个:
MySQL中:
- INSERT INTO T VALUES(?, ?) ON DUPLICATE KEY UPDATE c = ?;
会有1、2、3三种可能的返回值;
PostgreSQL中:
- INSERT INTO T1 VALUES(?, ?);
当T1没有主键时,插入返回值为0;
所以不能简单地靠返回值再决定回滚,即:
- int rowN = st.executeUpdate(sql);
- if(rowN == 1) //错误代码
- conn.rollback();
- if(rowN < 1) //错误代码
- conn.rollback();
还有很多别的情况,欢迎讨论
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/179954.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...