MySQL存储过程例子(包含事务,输出参数,嵌套调用)

2022-11-12 09:31:04
内容摘要
这篇文章主要为大家详细介绍了MySQL存储过程例子(包含事务,输出参数,嵌套调用),具有一定的参考价值,可以用来参考一下。 对此感兴趣的朋友,看看idc笔记做的技术笔记!drop procedu
文章正文

这篇文章主要为大家详细介绍了MySQL存储过程例子(包含事务,输出参数,嵌套调用),具有一定的参考价值,可以用来参考一下。

对此感兴趣的朋友,看看idc笔记做的技术笔记!

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 theninsert 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;-- 运行没有异常,提交事务commit;-- 设置返回值为1set rtn=1;end;delimiter ;drop procedure if exists pro_rep_shadow_rs_do;delimiter |----------------------------------- 处理指定编号范围内的数据-- 需要输入2个参数-- last_rep_sync_id 是编号的最小值-- max_rep_sync_id 是编号的最大值-- 无返回值---------------------------------create procedure pro_rep_shadow_rs_do(last_rep_sync_id int, max_rep_sync_id int)begindeclare iRep_operationtype varchar(1);declare iRep_status varchar(1);declare iRep_Sync_id int;declare iId int;-- 这个用于处理游标到达最后一行的情况declare stop int default 0;-- 声明游标declare cur cursor for select id,Rep_operationtype,iRep_status,rep_sync_id from rep_shadow_rs where rep_sync_id between last_rep_sync_id and max_rep_sync_id;-- 声明游标的异常处理,设置一个终止标记declare CONTINUE HANDLER FOR SQLSTATE '02000' SET stop=1;-- 打开游标open cur;-- 读取一行数据到变量fetch cur into iId,iRep_operationtype,iRep_status,iRep_Sync_id;-- 这个就是判断是否游标已经到达了最后while stop <> 1 do-- 各种判断if iRep_operationtype='I' theninsert into rs0811 (id,fnbm) select id,fnbm from rep_shadow_rs where rep_sync_id=iRep_sync_id;elseif iRep_operationtype='U' thenbeginif iRep_status='A' theninsert into rs0811 (id,fnbm) select id,fnbm from rep_shadow_rs where rep_sync_id=iRep_sync_id;elseif iRep_status='B' thendelete from rs0811 where id=iId;end if;end;elseif iRep_operationtype='D' thendelete from rs0811 where id=iId;end if;-- 读取下一行的数据fetch cur into iId,iRep_operationtype,iRep_status,iRep_Sync_id;end while; -- 循环结束close cur; -- 关闭游标end;

注:关于MySQL存储过程例子(包含事务,输出参数,嵌套调用)的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!