为了账号安全,请及时绑定邮箱和手机立即绑定

java.sql.SQLException: Lock wait timeout exceeded; try restarting transaction

java.sql.SQLException: Lock wait timeout exceeded; try restarting transaction

眼眸繁星 2018-12-06 17:07:16
每次执行都报错,提示的错误位置还不一定 for(...){ ... Connection conn = null; Statement stmt = null; ... stmt = conn.createStatement(); int n=stmt.executeUpdate("update 表1 set ... where ..."); stmt.executeUpdate("delete from 表2 where..."); stmt.executeUpdate("update 表2,表3 set ... where ..."); stmt.executeUpdate("update 表2 set ... where ..."); while(){ .... rs = stmt.executeQuery(sql.toString()); ... rs = stmt.executeQuery(sql.toString()); ... } }
查看完整描述

1 回答

?
动漫人物

TA贡献1815条经验 获得超10个赞

Connection 和statement要在for循环之前创建,

如: Connection conn=getConnection();

         stmt =  conn.createStatement();

   for(.......){.................}

查看完整回答
反对 回复 2018-12-16
  • 1 回答
  • 0 关注
  • 1062 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信