为了账号安全,请及时绑定邮箱和手机立即绑定

同时使用多种方法和直接查询进行PDO事务处理?

同时使用多种方法和直接查询进行PDO事务处理?

PHP
一只甜甜圈 2021-04-28 12:26:33
我需要确保以下各项在PDO Transactions中能正常工作:// Database Transactiontry{    // Start the transaction.    $db->beginTransaction();        // Some method in this class which runs a database query         $this->do_something($data);        // Another method doing multiple database queries        $this->do_another_thing($other_data);        // Directly doing some query        $stmt = $db->prepare("DELETE FROM `table` WHERE `time` < DATE_SUB(NOW(), INTERVAL :days DAY)");        $stmt->execute(['days' => 2]);    // Commit    $db->commit();}catch(Exception $e){    $error = $e->getMessage();    // log    // Rollback the transaction.    $db->rollBack();}我的问题是:它会以这种方式回滚所有内容(包括以其他方法完成的查询)吗?或仅直接查询?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 126 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信