PDO::commit
PDO::commit
(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0)
PDO :: commit - 提交一个事务
Description
public bool PDO::commit ( void )
提交事务,将数据库连接返回到自动提交模式,直到下一次调用PDO :: beginTransaction()启动新的事务。
Return Values
返回TRUE
成功或返回FALSE
失败。
Errors/Exceptions
如果没有活动事务,则抛出PDOException。
注意
:即使不是PDO::ATTR_ERRMODE
属性,也会引发异常PDO::ERRMODE_EXCEPTION
。
Examples
示例#1提交基本事务
<?php
/* Begin a transaction, turning off autocommit */
$dbh->beginTransaction(
/* Insert multiple records on an all-or-nothing basis */
$sql = 'INSERT INTO fruit
(name, colour, calories)
VALUES (?, ?, ?)';
$sth = $dbh->prepare($sql
foreach ($fruits as $fruit) {
$sth->execute(array(
$fruit->name,
$fruit->colour,
$fruit->calories,
)
}
/* Commit the changes */
$dbh->commit(
/* Database connection is now back in autocommit mode */
?>
示例#2提交DDL事务
<?php
/* Begin a transaction, turning off autocommit */
$dbh->beginTransaction(
/* Change the database schema */
$sth = $dbh->exec("DROP TABLE fruit"
/* Commit the changes */
$dbh->commit(
/* Database connection is now back in autocommit mode */
?>
注意
:并非所有的数据库都允许事务在DDL语句上操作:有些会产生错误,而另一些(包括MySQL)会在遇到第一个DDL语句后自动提交事务。
© 1997–2017 The PHP Documentation Group
根据知识共享署名许可证v3.0或更高版本授权。