猿问

为什么mysqli给出“命令不同步”错误?

为什么mysqli给出“命令不同步”错误?

我正在尝试运行以下内容。

<?php

$db = mysqli_connect("localhost","user","pw") or die("Database error");mysqli_select_db($db, "database");$agtid = $_POST['level'];$sql = sprintf("call agent_hier(%d)", $agtid);$result = mysqli_query($db, $sql) or exit(mysqli_error($db));if ($result) {
    echo "<table border='1'>
        <tr><th>id</th>
        <th>name</th>
        <th>parent_id</th>
        <th>parent_name</th>
        <th>level</th>
        <th>email</th></tr>";

    while ($row = mysqli_fetch_assoc($result)) 
    {
        $aid = $row["id"];
        $sql2 = "SELECT * FROM members WHERE MEMNO = '$aid'";
        $result2 = mysqli_query($db,$sql2) or exit(mysqli_error($db));

            while ($newArray = mysqli_fetch_array($result2)) {
                $fname = $newArray['FNAME'];
                $lname = $newArray['LNAME'];
                $mi = $newArray['MI'];  
                $address = $newArray['ADDRESS'];    
                $city = $newArray['CITY'];  
                $state = $newArray['STATE'];    
                $zip = $newArray['ZIP'];
                            $kdate = $newArray['KDATE'];
                $date = abs(strtotime(date('m/d/Y')) - strtotime(date($kdate))) / (60 * 60 * 24);
            }

        echo sprintf("<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>",
            $row["id"],$row["name"],
            $row["parent_id"],$row["parent_name"],
            $row["level"],$row["email"]);
    }

    echo "</table>";}mysqli_free_result($result);mysqli_close($db);?>

如果我删除以下行:

  $aid = $row["agent_id"];

至....

  $date = abs(strtotime(date('m/d/Y')) - strtotime(date($kdate))) / (60 * 60 * 24);
  }

一切都会好起来的。如果没有,我收到以下错误:

命令不同步; 你现在不能运行这个命令

在研究,我认为这可能是由于在同一时间运行多个MySQLi的查询,其中使用mysqli_multi_query,但所有样品和一般数据的引导似乎并不适用。

有任何想法吗?


慕田峪7331174
浏览 501回答 3
3回答

慕妹3146593

MySQL客户端不允许您执行新查询,其中仍有从正在进行的查询中提取的行。有关常见错误,请参阅MySQL文档中的命令不同步。您可以使用mysqli_store_result()从外部查询中预取所有行。这将在MySQL客户端中缓冲它们,因此从服务器的角度来看,您的应用程序已获取完整的结果集。然后,即使在从now-buffered外部结果集中获取行的循环中,您也可以执行更多查询。或者您mysqli_result::fetch_all()将完整的结果集作为PHP数组返回,然后您可以循环该数组。调用存储过程是一种特殊情况,因为存储过程有可能返回多个结果集,每个结果集可能有自己的一组行。这就是为什么@ a1ex07的回答提到使用mysqli_multi_query()和循环直到mysqli_next_result()没有更多的结果集。这是满足MySQL协议所必需的,即使在您的情况下您的存储过程只有一个结果集。PS:顺便说一句,我看到你正在进行嵌套查询,因为你有代表层次结构的数据。您可能需要考虑以不同方式存储数据,以便您可以更轻松地查询它。我做了一个关于这个标题为SQL和PHP的分层数据模型的演示文稿。我还在我的SQL反模式:避免数据库编程陷阱的一章中讨论了这个主题。以下是如何mysqli_next_result()在CodeIgnitor 3.0.3中实现:在system/database/drivers/mysqli/mysqli_driver.php变化的第262行protected&nbsp;function&nbsp;_execute($sql){ &nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;$this->conn_id->query($this->_prep_query($sql));}对此protected&nbsp;function&nbsp;_execute($sql){ &nbsp;&nbsp;&nbsp;&nbsp;$results&nbsp;=&nbsp;$this->conn_id->query($this->_prep_query($sql)); &nbsp;&nbsp;&nbsp;&nbsp;@mysqli_next_result($this->conn_id);&nbsp;//&nbsp;Fix&nbsp;'command&nbsp;out&nbsp;of&nbsp;sync'&nbsp;error &nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;$results;}这是自2.x以来的一个问题。我刚刚更新到3.x并且不得不将这个hack复制到新版本。

繁花如伊

简单地说,在调用mysqli_free_result之后,你必须调用mysqli_next_result($ db)。mysqli_free_result($结果);&nbsp;mysqli_next_result($ db)&nbsp;mysqli_close($ db);

倚天杖

只需调用此函数:$this->free_result();function&nbsp;free_result()&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;while&nbsp;(mysqli_more_results($this->conn)&nbsp;&&&nbsp;mysqli_next_result($this->conn))&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$dummyResult&nbsp;=&nbsp;mysqli_use_result($this->conn); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;($dummyResult&nbsp;instanceof&nbsp;mysqli_result)&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mysqli_free_result($this->conn); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;&nbsp;&nbsp;}
随时随地看视频慕课网APP
我要回答