Example #1
0
 function transactionStart()
 {
     $result = $this->adapter->beginTransaction();
     if (!$result) {
         throw new BeforeTransactionException("Transaction BEGIN failed");
     }
     $this->transactionManager->inTransaction = true;
 }