Session::startTransaction

(No version information available, might only be in Git)

Session::startTransactionトランザクションを開始する

説明

public mysql_xdevapi\Session::startTransaction(): void

新しいトランザクションを開始します。

パラメータ

この関数にはパラメータはありません。

戻り値

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();
?>
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top