mysql預存程序交易回復,mysql預存程序事務

來源:互聯網
上載者:User

mysql預存程序交易回復,mysql預存程序事務

SQL過程代碼:

DELIMITER $$CREATE DEFINER=`root`@`localhost` PROCEDURE `test_procedure`()BEGINDECLARE errno int;declare continue HANDLER for sqlexceptionbegin rollback;set errno=1;end;start transaction;set errno=0;insert into test(name) values ('kaka');insert into test(id, name) values(1,'papa');commit;select errno;END

過程說明:

1、首先表中已經存在一條記錄(1,'baby');

2、調用測試預存程序;

3、該過程首先聲明error變數,和一個SQL異常處理handler,該handler觸發時會復原事務,並將error置為1;

事務開始,將error置為0,插入一條資料name為‘kaka’,再插入一條資料(1,'papa'),然後提交;

但第二次插入資料時,主鍵id已存在,此處會報異常觸發我們的SQL異常處理handler。實現復原並將error置為1;

查看error值;

4、調用預存程序之後查看測試表中的資料是否復原;

調用前:


調用中:


調用後:


建庫SQL:

CREATE DATABASE  IF NOT EXISTS `test`;USE `test`;DROP TABLE IF EXISTS `test`;CREATE TABLE `test` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `name` varchar(45) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

綜上,可以通過在預存程序中聲明異常處理handler使得我們的事物達到復原效果。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.