首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Mysql >

这个存储过程为什么会失败 加了if @@error_count=0,该如何处理

2012-02-06 
这个存储过程为什么会失败加了if @@error_count0这个存储过程为什么会失败CREATE PROCEDURE `ba3`(id int

这个存储过程为什么会失败 加了if @@error_count=0

这个存储过程为什么会失败 
CREATE PROCEDURE `ba3`(id int) 
begin 
START TRANSACTION;


update ba2 a, (select max(a) as aa from ba2 where a < id) b set a.b=1 where a.a=b.aa;


delete from ba2 where a=id;

if @@error_count=0 then 


commit;


else

rollback;

end;



建立表语句如下(附后 CREATE TABLE `ba2` (
  `b` int(11) default NULL,
  `a` int(11) NOT NULL auto_increment,
  PRIMARY KEY (`a`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) 

错误的关键在
if @@error_count=0 then 
commit;
else
rollback;

提示错误
1064--you have an error in your SQL syntax;
check the manual that corresponds to your MYSQL server version for the right
syntax to use near "" at line 14




[解决办法]
end if 哪儿去了?
[解决办法]
1,用@@error_count,我没测试过,是否可行. 但“前面定义了事务 他会自动会滚的”这句话在mysql中还不成立,除非在前面设置出错处理handle
declare headle SQLERROR ... ROLLBACK.

2, 一定要加上start transaction, 否则commit和rollback不起作用,除非auto_commit=0


[解决办法]

SQL code
CREATE   PROCEDURE `handlerdemo`()BEGIN DECLARE exit HANDLER FOR  1146 SET @x2 = 2;INSERT INTO test1 VALUES (1); set @x2=@x2+1;select @x2;END 

热点排行