1

在 PHP 中,当我第二次尝试使用 $mysqli->multi_query 时,它会抛出以下错误。

我查看了 MySQL 手册,以及在 SO 上提出的类似问题,都建议使用$mysqli->use_result();or $mysqli->store_result();or $mysqli->free_result();

但没有一个能解决问题。知道我可能会错过什么。

当前输出 - '命令不同步;你现在不能运行这个命令'

<?php

$link = mysqli_connect('localhost', 'root', '', 'database');

$array1 = array(1 => 1000, 2 => 1564, 3 => 2646, 4 => 5462, 5 => 8974);
$array2 = array(23 => 1975, 24 => 3789, 25 => 4658, 26 => 5978, 27 => 6879);

$update1 = '';
foreach($array1 as $k => $v) {
    $update1 .= "UPDATE `ps_temp` SET `price` = {$v} WHERE `id` = {$k};";
}

$res = mysqli_multi_query($link, $update1);     // Table is updated
$error = mysqli_error($link);
echo 'Error 1 - '.$error.'<hr>';                // Output : Error 1 - 

$update2 = '';
foreach($array2 as $k => $v) {
    $update2 .= "UPDATE `ps_temp2` SET `price` = {$v} WHERE `id` = {$k};";
}

mysqli_multi_query($link, $update2);            // Table is not updated.
$error = mysqli_error($link);
echo 'Error 2 - '.$error.'<hr>';                // Output: Error 2 - 'Commands out of sync; you can't run this command now'

?>
4

1 回答 1

1

您必须获取所有结果 - 例如:

// here: first multi query

// fetch all results
while( mysqli_more_results($link) ){
    $result = mysqli_store_result($link);
    mysqli_next_result($link);
}

// here: second multi query

某些语言中的某些 SQL 系统是“惰性的”。它们仅在您要求结果时发送查询(例如 C# 中的 LINQ)。也许 PHP 也这样做。它阻止连接等待您的结果获取。

于 2013-07-10T13:43:59.747 回答