(无版本信息可用,可能仅在 Git 中)
Session::rollbackTo — 回滚事务到保存点
name
要回滚到的保存点的名称;不区分大小写。
一个 SqlStatementResult 对象。
示例 #1 mysql_xdevapi\Session::rollbackTo() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$collection = $session->getSchema("addressbook")->getCollection("names");
$session->startTransaction();
$collection->add( '{"test1":1, "test2":2}' )->execute();
$savepoint1 = $session->setSavepoint();
$collection->add( '{"test3":3, "test4":4}' )->execute();
$savepoint2 = $session->setSavepoint();
$session->rollbackTo($savepoint1);
?>