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

时间:2024-01-17 06:21:54 

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;

-- 运行没有异常,提交事务
commit;
-- 设置返回值为1
set 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)
begin
declare 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' then
insert into rs0811 (id,fnbm) select id,fnbm from rep_shadow_rs where rep_sync_id=iRep_sync_id;
elseif iRep_operationtype='U' then
begin
if iRep_status='A' then
insert into rs0811 (id,fnbm) select id,fnbm from rep_shadow_rs where rep_sync_id=iRep_sync_id;
elseif iRep_status='B' then
delete from rs0811 where id=iId;
end if;
end;
elseif iRep_operationtype='D' then
delete from rs0811 where id=iId;
end if;

-- 读取下一行的数据
fetch cur into iId,iRep_operationtype,iRep_status,iRep_Sync_id;

end while; -- 循环结束
close cur; -- 关闭游标
end;

标签:MySQL,存储过程
0
投稿

猜你喜欢

  • php将12小时制转换成24小时制的方法

    2023-11-21 15:56:08
  • Python标准库与第三方库详解

    2021-12-16 04:23:03
  • python判断一个对象是否可迭代的例子

    2021-01-04 18:19:23
  • NumPy统计函数的实现方法

    2021-10-15 22:02:27
  • vue2中基于vue-simple-upload实现文件分片上传组件功能

    2024-05-09 15:23:25
  • JS简单的轮播的图片滚动实例

    2024-03-19 19:46:31
  • python3.5 + PyQt5 +Eric6 实现的一个计算器代码

    2021-02-27 17:00:28
  • js:校验IPv6地址的正则表达式

    2023-06-30 23:21:33
  • php简单防盗链验证实现方法

    2023-09-12 04:55:15
  • 简单的文本内容处理工具

    2010-01-28 12:31:00
  • Python 网页请求之requests库的使用详解

    2021-01-30 23:42:06
  • python3中的类继承你真的了解吗

    2021-06-18 11:23:53
  • python uuid生成唯一id或str的最简单案例

    2021-06-07 00:40:45
  • MySQL中从库延迟状况排查的一则案例

    2024-01-21 01:32:53
  • 举例讲解Python的Tornado框架实现数据可视化的教程

    2022-01-16 23:56:52
  • Python callable()函数用法实例分析

    2021-12-14 00:28:52
  • 再谈Python中的字符串与字符编码(推荐)

    2023-06-15 23:25:08
  • GoLang channel关闭状态相关操作详解

    2024-04-26 17:26:52
  • Python 有可能删除 GIL 吗?

    2023-02-12 15:52:21
  • Python如何匹配文本并在其上一行追加文本

    2022-10-19 13:16:43
  • asp之家 网络编程 m.aspxhome.com