Zend_Db_Adapter_Pdo_Abstract::_beginTransaction PHP Method

_beginTransaction() protected method

Begin a transaction.
protected _beginTransaction ( )
    protected function _beginTransaction()
    {
        $this->_connect();
        $this->_connection->beginTransaction();
    }

Usage Example

コード例 #1
0
 protected function _beginTransaction()
 {
     /**
      * Auto-Commit must be turned off before begin transaction
      */
     $this->getConnection()->setAttribute(PDO::ATTR_AUTOCOMMIT, 0);
     parent::_beginTransaction();
 }