最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

MySQL触发器错误_MySQL

来源:动视网 责编:小采 时间:2020-11-09 18:10:18
文档

MySQL触发器错误_MySQL

MySQL触发器错误_MySQL:bitsCN.com 使用Spring jdbctemplate时出错: view sourceprint01 org.springframework.jdbc.UncategorizedSQLException: PreparedStatementCallback; uncategorized SQLException for SQL [in
推荐度:
导读MySQL触发器错误_MySQL:bitsCN.com 使用Spring jdbctemplate时出错: view sourceprint01 org.springframework.jdbc.UncategorizedSQLException: PreparedStatementCallback; uncategorized SQLException for SQL [in


bitsCN.com

使用Spring jdbctemplate时出错:

view sourceprint?01 org.springframework.jdbc.UncategorizedSQLException: PreparedStatementCallback; uncategorized SQLException for SQL [insert into t_data(id,content,status,type,r_id) values(?,?,?,?,?)]; SQL state [HY000]; error code [1442]; Can't update table 't_data' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.; nested exception is java.sql.SQLException: Can't update table 't_data' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.

02 org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.translate(SQLStateSQLExceptionTranslator.java:124)

03

04 java.sql.SQLException: Can't update table 't_data' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.

05 com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1055)

06 com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956)

07 com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3491)

08 com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3423)

09 com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1936)

10 com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2060)

11 com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2542)

12 com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1734)

13 com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2019)

原因是在触发器中引用了触发该触发器的宿主表:

when you insert a record mysql is doing some lock stuff. you can't insert/update/delete rows of the same table where you insert.. because then the trigger would called again and again.. ending up in a recursion

参考:http://forums.mysql.com/read.php?99,122354,122505#msg-122505

http://topic.csdn.net/u/20101213/15/095c08fe-bd91-476c-9d16-5d7c8fa8a2.html?seed=1512932427&r=76107745

bitsCN.com

文档

MySQL触发器错误_MySQL

MySQL触发器错误_MySQL:bitsCN.com 使用Spring jdbctemplate时出错: view sourceprint01 org.springframework.jdbc.UncategorizedSQLException: PreparedStatementCallback; uncategorized SQLException for SQL [in
推荐度:
标签: 失败 id 错误
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top