请记住这个错误:https://bugs.php.net/bug.php?id=66528
使用MySql时,您不能依赖commit()的返回值
(PHP 5 >= 5.1.0, PHP 7, PHP 8, PECL pdo >= 0.1.0)
PDO::commit — 提交事务
此函数没有参数。
示例 #1 提交基本事务
<?php
/* 开始事务,关闭自动提交 */
$dbh->beginTransaction();
/* 以全有或全无的方式插入多条记录 */
$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,
));
}
/* 提交更改 */
$dbh->commit();
/* 数据库连接现在已返回自动提交模式 */
?>
示例 #2 提交 DDL 事务
<?php
/* 开始事务,关闭自动提交 */
$dbh->beginTransaction();
/* 更改数据库模式 */
$sth = $dbh->exec("DROP TABLE fruit");
/* 提交更改 */
$dbh->commit();
/* 数据库连接现在已返回自动提交模式 */
?>
注意: 并非所有数据库都允许事务对 DDL 语句进行操作:有些数据库会生成错误,而其他数据库(包括 MySQL)会在遇到第一个 DDL 语句后自动提交事务。