gpt4 book ai didi

php - 通过php在mysql中实现事务

转载 作者:可可西里 更新时间:2023-11-01 07:49:47 25 4
gpt4 key购买 nike

下面是我的问题

 $db= new mysqli('localhost','user','passcode','dbname');
try {
// First of all, let's begin a transaction
$db->beginTransaction();

// A set of queries; if one fails, an exception should be thrown
$query1="insert into table1(id,name) values('1','Dan')";
$query2="insert into table2(id,name) values('2','Anaba')";

// If we arrive here, it means that no exception was thrown
// i.e. no query has failed, and we can commit the transaction
$db->commit();

} catch (Exception $e) {
// An exception has been thrown
// We must rollback the transaction
$db->rollback();
}

拜托,我正在尝试通过 php 在 mysql 查询中实现事务,当其中一个查询失败时,我想使所有查询失败。上面的代码抛出一个错误(“ fatal error :调用未定义的方法mysqli::beginTransaction()”)。请问有没有更好的解决方案或想法来解决这个问题。谢谢你的帮助

最佳答案

$db->begin_transaction();

不是

$db->beginTransaction();

http://www.php.net/manual/en/mysqli.begin-transaction.php

如果早于 PHP 5.5,则使用

$db->autocommit(true);

代替

关于php - 通过php在mysql中实现事务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17625016/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com