php mysqli在嵌套循环中准备语句抛出命令输出或同步错误

时间:2014-01-11 11:27:42

标签: php mysqli prepared-statement

我有以下函数,它有for和while循环来执行预准备语句。但它错误为Commands out of sync; you can't run this command now

这是我的功能

public function queryProductDetail() {

    $product_info = $this->mysqliengine->prepare("select product_id, sku from product limit 10");
    $product_info->execute();
    $product_info->bind_result($product_id,$sku);

    $product_image = $this->mysqliengine->prepare("insert into product_image(product_id,thumb_image,medium_image,original_image) values(?,?,?,?)") or die($this->mysqliengine->error);
    $product_image->bind_param('isss',$api_product_id, $thumb_image, $medium_image, $original_image);


    while($product_info->fetch()) {
        $rowResult = $this->api->queryProduct(array('serverParams' => array('sku' => $sku, 'usertoken' => USER_TOKEN)));
        foreach($rowResult->result->imagesUrls->Image as $image) {
            $api_product_id = $product_id;
            $thumb_image = $image->smallurl;
            $medium_image = $image->middleurl;
            $original_image = $image->bigurl;
            $product_image->execute();
        }
    }
}

任何人都可以帮助我为什么会这样。

这是Fatal error: Call to a member function bind_param() on a non-object

中的$product_image->bind_param消息

1 个答案:

答案 0 :(得分:0)

C.5.2.14. Commands out of sync

  

例如,如果您使用mysql_use_result()并尝试在调用mysql_free_result()之前执行新查询,则会发生这种情况。如果您尝试执行两个返回数据的查询而不在其间调用mysql_use_result()或mysql_store_result(),也会发生这种情况。

$product_info->execute()打开一个mysql资源,阻止新查询。 Unbuffered Queries可能是导致该错误的原因。 mysqli_stmt::prepare()默认返回无缓冲的结果:

  

Prepared语句默认返回无缓冲的结果集。 [..]也可以使用mysqli_stmt_store_result()缓冲预准备语句的结果。