Difference between #2 and #7 of
How to use nested DB transactions (MySQL 5+, PostgreSQL)

Changes

Title changed

How to use nested DB transactions (MySqlQL 5+, PgSqlostgreSQL)

Category changed

TutorialHow-tos

Yii version unchanged

Tags changed

db, mysql, postgresql, transaction, nested

Content changed


 
Original source code takenand idea are from: [PHP, PDO & Nested Transactions](http://www.kennynet.co.uk/2008/12/02/php-pdo-nested-transactions/). tTested with: MySqlQL 5.1.30 + Yii 1.1.8. Problem: Say there is service layer in an application, and one service may use others. Now each service deals will complex business logic will needs to wrap that into transactions. If there are services A and B here's how it might happen:  


```php
[...]
With default Yii implementation, PDO will throw exception saying there already is active transaction.

But there's a solution
 :) First, you'll need to extend PDO class:
 
 and save it in your the protected/components directory: ```php class InsNestedPDO extends PDO {
// Database drivers that support SAVEPOINTs.
protected static $savepointTransactions = array("pgsql", "mysql");
[...]
public function beginTransaction() {
if(
!$this->nestable()transLevel == 0 || !$this->transLevel == 0nestable()) {
parent::beginTransaction();
} else {
[...]
$this->transLevel--;

if(
!$this->nestable()transLevel == 0 || !$this->transLevel == 0nestable()) {
parent::commit();
} else {
[...]
$this->transLevel--;

if(
!$this->nestable()transLevel == 0 || !$this->transLevel == 0nestable()) {
parent::rollBack();
} else {
[...]
```

Then, you'll need to alter [CDbConnection::createPdoInstance()]. There, change $pdoClass to your class name (InsPDO in this example).
 
 
 
```php 
protected function createPdoInstance()
 
{
Now you can use it in db configuration array in `protected/config/main.php`:
 
 
 
```php 
'db'=>array(
$ 'pdoClass='Ins' => 'NestedPDO';, if(($pos=strpos($this->connectionString,':'))!==false)
 
    {
 
        $driver=strtolower(substr($this->connectionString,0,$pos));
 
        if($driver==='mssql' || $driver==='dblib')
 
            $pdoClass='CMssqlPdoAdapter';
 
    }
 
    return new $pdoClass($this->connectionString,$this->username,
 
                                $this->password,$this->_attributes);
 'connectionString' => ...
 
),
 
```
 
 
That's it, there you go ;)
} ```
 
 
It'd probably be better OOP to extend [CDbConnection], especially since createPdoInstance is protected. But then either there are inconsistencies with private/protected properties of [CDbConnection], or I didn't spent enough time to explore how to properly extend [CDbConnection].
 
 
That's it, there you go;)
 

 
Links
 
-----
 
- [Chinese version](http://www.itkuaixun.com/bbs/thread-206-1-1.html "Chinese version")
41 0
26 followers
Viewed: 66 740 times
Version: 1.1
Category: How-tos
Written by: mindeh
Last updated by: Boaz
Created on: Jun 30, 2009
Last updated: 8 years ago
Update Article

Revisions

View all history