view plaincopy to clipboardprint? drop procedure if exists pro_rep_shadow_rs; delimiter | ---------------------------------- -- rep_shadow_rs -- 用来处理信息的增加,更新和删除 -- 每次只更新上次以来没有做过的数据 -- 根据不同的标志位 -- 需要一个输出的参数, -- 如果返回为0,则调用失败,事务回滚 -- 如果返回为1,调用成功,事务提交 -- -- 测试方法 -- call pro_rep_shadow_rs(@rtn); -- select @rtn; ---------------------------------- create procedure pro_rep_shadow_rs(out rtn int) begin -- 声明变量,所有的声明必须在非声明的语句前面 declare iLast_rep_sync_id int default -1; declare iMax_rep_sync_id int default -1; -- 如果出现异常,或自动处理并rollback,但不再通知调用方了 -- 如果希望应用获得异常,需要将下面这一句,以及启动事务和提交事务的语句全部去掉 declare exit handler for sqlexception rollback; -- 查找上一次的 select eid into iLast_rep_sync_id from rep_de_proc_log where tbl='rep_shadow_rs'; -- 如果不存在,则增加一行 if iLast_rep_sync_id=-1 then insert into rep_de_proc_log(rid,eid,tbl) values(0,0,'rep_shadow_rs'); set iLast_rep_sync_id = 0; end if;
-- 下一个数字 set iLast_rep_sync_id=iLast_rep_sync_id+1; -- 设置默认的返回值为0:失败 set rtn=0;
-- 启动事务 start transaction; -- 查找最大编号 select max(rep_sync_id) into iMax_rep_sync_id from rep_shadow_rs; -- 有新数据 if iMax_rep_sync_id>=iLast_rep_sync_id then -- 调用 call pro_rep_shadow_rs_do(iLast_rep_sync_id,iMax_rep_sync_id); -- 更新日志 update rep_de_proc_log set rid=iLast_rep_sync_id,eid=iMax_rep_sync_id where tbl='rep_shadow_rs'; end if;