gpt4 book ai didi

php - 如何在循环中执行多条语句

转载 作者:行者123 更新时间:2023-11-29 13:05:20 25 4
gpt4 key购买 nike

你好,我有几个查询要执行,所有查询都返回独立的结果集:

select * from table;
call procedureA(par1);
call procedureB(par2);

我想在循环中执行它们以执行其他操作:

$queries = array("select * from table;", "call procedureA(par1);", "call procedureB(par2);");
foreach($queries as $query) {
$res=$db->query($query);
// do something here with the query result
someFunction($res);
}

第一条语句运行良好;在第二次迭代时,它不再声明 $res 是一个非对象:

Call to a member function ... on a non-object

除了使用mysqli_multi_query()之外,我还可以通过什么方式循环执行多个查询?

更新我从代码示例中删除了$res->close();,因为它具有误导性并且对问题没有影响。

更新2 - 解决方案为了任何人的利益,这里是一个完整的工作代码:

$queries = array(
"CALL procedureA(par1)"
,"CALL procedureB()"
, "Select * from tableC"
);

// Open connection
$db = new mysqli(
$config['host']
,$config['user']
,$config['pwd']
,$config['dbname']
);

foreach($queries as $query) {
if ($res instanceof mysqli_result) {
$res->free();
}
$res=$db->query($query);
// do something with the query
echo getHtmlTable($res);

// free current result
$res->free();

// free subsequent resultset (es. the one with OK/ERR sp call status)
while ($db->next_result()) {
//free each result.
$res = $db->use_result();
if ($res instanceof mysqli_result) {
$res->free();
}
}
}

最佳答案

在循环中运行查询没有什么特别的。

无论是一个接一个地编写两个查询,还是在循环中运行它们,都没有区别。因此,一般来说,循环运行的几个查询与按顺序运行的几个查询没有什么不同,就像在我们的所有脚本中一样。

唯一可能出现的问题是查询本身。比如说,存储过程调用总是返回至少两个结果集。在检索到所有结果集之前,无法运行其他查询。

因此,作为一种快速而肮脏的解决方案,可以添加这样的行

while ($db->next_result()) {}

在循环底部清理查询执行后可能保留在队列中的所有结果集。

打开mysqli的错误报告也会非常方便,让你知道所有mysql发生的错误。这样,您就可以将此类错误消息添加到您的问题中(即“命令不同步”)。为此,请在 mysqli connect 之前添加此行:

mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);

关于php - 如何在循环中执行多条语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22791706/

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