Transaction rollback of Zend framework

Source: Internet
Author: User
Tags zend framework

From: Zend framework Manual

By defaultZend_db_adapter
Yes) the automatic commit mode is used.
That is to say, the commit operation is performed when all database operations are executed. If you try to execute transaction processing, the simplest thing is to call
Begintransaction ()

And then select Commit or rollback. After,Zend_db_adapter
Will return to the automatic commit mode until you callBegintransaction ()
Method.

<? PHP

// Create a $ db object (in this exampleZend_db_adapter), And then start a transaction.
$ Db-> begintransaction ();

// Try database operations.
// If the operation succeeds, commit the operation;
// Assume that roll back.
Try {
$ Db-> query (...);
$ Db-> commit ();
} Catch (exception $ e ){
$ Db-> rollback ();
Echo $ e-> getmessage ();
}

?>
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.