在 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'
?>