抛出数据库错误异常时可以回滚事务吗?

时间:2013-04-08 16:16:40

标签: php mysql cakephp cakephp-2.3

我有一个大型数据集需要在发布到服务器时写入数据库,但是客户端编辑器中的错误可能会添加额外的记录,从而触发“完整性约束违规”。

我的问题是,当我到达触发错误的数据点时,数据库中的许多先前数据已经更新。我需要回滚并拒绝发布的数据。

这是我的控制者的行动。

/**
 * Handles saving data from the network editor.
 */
public function json_save()
{
    if($this->request->is('post'))
    {
        $result = array();
        $data = $this->request->input('json_decode');
        if(isset($data->network_id) && !empty($data->network_id))
        {
            $dataSource = $this->Node->getDataSource();
            $dataSource->begin();

            $result['nodes'] = $this->updateModel($data->network_id, $this->Node, 'nodes', $data, array(
                'ParamValue'
            ));
            $result['connections'] = $this->updateModel($data->network_id, $this->Connection, 'connections', $data);

            $dataSource->commit();

            $this->viewClass = 'Json';
            $this->set('result', $result);
            $this->set('_serialize', array(
                'result'
            ));

            return;
        }
    }

    throw new ErrorException('Posted data missing.');
}

我的控制器的updateModel功能会对模型$this->Node$this->Connection执行一些删除和更新。

如何回滚在更新$this->Connection模型期间通常会抛出的“完整性约束违规”。

我不确定这是一个PHP异常,我可以捕获然后进行回滚,或者是否有不同的方法来捕获它。

1 个答案:

答案 0 :(得分:2)

你可以做:

$dataSource->begin();

try {
  // The queries here.
} catch (Exception $e) {
  $dataSource->rollback();
  throw $e;
}

$dataSource->commit();