PHP:『パーフェクトPHP』フレームワークを少し修正して、スムーズにトランザクション処理

PHP

フレームワークのcoreフォルダにあるDbRepository.phpに、トランザクション用の関数を追記。

<?php

abstract class DbRepository
{

    ....

    

    public function beginTransaction()
    {
        $this->con->beginTransaction();
    }

    public function commit()
    {
        $this->con->commit();
    }

    public function rollBack()
    {
        $this->con->rollBack();
    }
}

コメント