Session::startTransaction

(没有版本信息可用,可能只存在于 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();
?>
添加笔记

用户贡献笔记

此页面没有用户贡献的笔记。
To Top