(沒有版本資訊,可能只在 Git 中)
Session::startTransaction — 開始交易
此函數沒有參數。
一個 SqlStatementResult 物件。
範例 #1 mysql_xdevapi\Session::startTransaction() 範例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$collection = $session->getSchema("addressbook")->getCollection("friends");
$session->startTransaction();
$collection->add( '{"test1":1, "test2":2}' )->execute();
$savepoint = $session->setSavepoint();
$collection->add( '{"test3":3, "test4":4}' )->execute();
$session->releaseSavepoint($savepoint);
$session->rollback();
?>