Using transactions in MySQL stored procedures

Source: Internet
Author: User

1  DROP PROCEDURE IF EXISTSTEST_SP12  CREATE PROCEDURETest_sp1 ()3     BEGIN  4     DECLARET_errorINTEGER DEFAULT 0; 5     DECLARE CONTINUEHANDLER forSQLEXCEPTIONSETT_error=1; 6   7STARTTRANSACTION; 8             INSERT  intoTestVALUES(NULL,'Test SQL 001'); 9             INSERT  intoTestVALUES('1','Test SQL 002'); Ten    One         IFT_error= 1  Then   A             ROLLBACK;  -         ELSE   -             COMMIT;  the         END IF;  -    -  END

Returns the execution state, which is either committed or rolled back:

1 DROP PROCEDURE IF EXISTSTEST_SP12 CREATE PROCEDURETest_sp1 ()3     BEGIN  4     DECLARET_errorINTEGER DEFAULT 0; 5     DECLARE CONTINUEHANDLER forSQLEXCEPTIONSETT_error=1; 6   7STARTTRANSACTION; 8             INSERT  intoTestVALUES(NULL,'Test SQL 001'); 9             INSERT  intoTestVALUES('1','Test SQL 002'); Ten    One         IFT_error= 1  Then   A             ROLLBACK;  -         ELSE   -             COMMIT;  the         END IF;  -     Select  t_error; Returns the result set of the identity bit;   - END

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.