Session::rollback
(No version information available, might only be in Git)
Session::rollback — トランザクションをロールバックする
パラメータ
この関数にはパラメータはありません。
戻り値
SqlStatementResult オブジェクトを返します。
例
例1 mysql_xdevapi\Session::rollback() の例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$collection = $session->getSchema("addressbook")->getCollection("names");
$session->startTransaction();
$collection->add( '{"test1":1, "test2":2}' )->execute();
$savepoint = $session->setSavepoint();
$collection->add( '{"test3":3, "test4":4}' )->execute();
$session->releaseSavepoint($savepoint);
$session->rollback();
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google