PDO Multiple queries: commit and rollback transaction

帅比萌擦擦* 提交于 2019-12-02 13:51:34
vhu

Yes, your approach is correct. Using Try...catch may lead into cleaner and more readable code in some cases but your overall approach is fine.

If your code fragment is from a function that handles DB queries and not much else, I'd probably switch the approach around:

// Begin Transaction
$this->db->beginTransaction();

// Fire Queries
if(!$query_one->execute()){
    $this->db->rollback();
    // other clean-up goes here
    return;
}

if(!$query_two->execute()){
    $this->db->rollback();
    // other clean-up goes here
    return; 
}

$this->db->commit();

Of course, if you require lots of clean-up to be done before you can return, then your original approach is better. Especially in these cases I'd look into using PDO::ERRMODE_EXCEPTION. This has some additional benefits, like exceptions automatically rolling back the transaction unless they are caught.

You need to wrap your transaction inside a try-catch. Mostly, if an exception is thrown, there is something wrong that your process can not continue. You don't know where the exception will come from, right? So, instead of letting the exception thrown wildly and force the application to stop, it is better to catch it, rollback the database transaction, and rethrow it.

// Begin Transaction
$this->db->beginTransaction();

try {

    $queryOne->execute();
    $queryTwo->execute();

    $this->db->commit();

} catch (\Exception $e) {
    $this->db->rollback();
    throw $e;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!