我在处理事务时通常使用的想法如下所示 (半伪代码) :
try { // First of all, let's begin a transaction $db->beginTransaction(); // A set of queries; if one fails, an exception should be thrown $db->query('first query'); $db->query('second query'); $db->query('third query'); // If we arrive here, it means that no exception was thrown // i.e. no query has failed, and we can commit the transaction $db->commit();} catch (Exception $e) { // An exception has been thrown // We must rollback the transaction $db->rollback();}
请注意,根据这种想法,如果查询失败,则必须引发Exception:
- PDO可以做到这一点,具体取决于您的配置方式
- 看到
PDO::setAttribute
- 并
PDO::ATTR_ERRMODE
与PDO::ERRMODE_EXCEPTION
- 看到
- 否则,使用某些其他API,您可能必须测试用于执行查询的函数的结果,并自己引发异常。
不幸的是,没有涉及魔术。您不能只是在某处放置指令并自动完成事务:您仍然必须指定必须在事务中执行哪一组查询。
例如,通常您会在交易 之前(在之前begin
)有_几个查询,在交易 _之后(在commit
或rollback
_之后 ) 又有几个查询
,无论_ 您发生什么 (或没有 发生 ) ,您都希望执行这些查询。交易。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)