MySQL存儲進程例子(包括事務,輸入參數,嵌套挪用)。本站提示廣大學習愛好者:(MySQL存儲進程例子(包括事務,輸入參數,嵌套挪用))文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL存儲進程例子(包括事務,輸入參數,嵌套挪用)正文
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;