MySQL Error: Commands out of sync; you can't run this command nowMySQL錯誤:命令不同步;您現在無法運行此命令
當我每次嘗試執行多個SQL過程時,出現上述錯誤。
我發現它與「存儲結果」有關,所以我一直試圖弄清楚一段時間,但我還沒有成功。
這是我的PHP代碼:
$query = "CALL GetObjectsValue(".$FormID.")";
if($res = $mysqli->query($query))
{
$mysqli->store_result();
while ($row = $res->fetch_assoc())
{
...
}
$res->free();
}
試試這個http://stackoverflow.com/a/32837401/2096041 –