命令不同步;在Mysql中调用存储过程时,你现在无法运行此命令

时间:2012-03-10 15:40:26

标签: php mysql codeigniter stored-procedures

我正在尝试运行一个程序,我收到此错误

Commands out of sync; you can't run this command now

这是我得到的原始错误

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

SELECT DISTINCT `property_id`, `pin`, `block_id`, `serial_no`, `status`, `ex_sn`, `ex_code`, `property_date_time`, `street_add`, `lab_name` FROM `view_property_user_lab` WHERE status = '6' AND lab_id = '01' AND designation IN( '5','6') LIMIT 10 

任何1可以告诉我为什么我得到这个错误以及如何摆脱它。我正在使用Code igniter,我也试过这个

$query->free_result().

在我的程序中我使用了这个陈述

   SELECT *
   FROM
  temp_calculated_rates_and_rules;
 -- and then
   TRUNCATE temp_calculated_rates_and_rules;

因为这个东西在PHP循环中调用,就像这样

  $arrIds = array('5','10');
    foreach ($arrIds as $id)
    {
        $this->_StoredProcedureMapper->setPId($id);

        $p10values = $this->_StoredProcedureMapper->fetch_p10_values();
        if (intval(@$p10values[0]['is_exempted']) != 1)
        {
            $this->generate_p10($p10values);
        }

    }

这里是mapper函数

    function fetch_p1_values()
{

    $qry = "CALL sp_main_pt10(?)";
    $result = $this->db->query($qry, $this->getPId());
    return $result->result_array();
}

我正在使用“mysqli”驱动程序

1 个答案:

答案 0 :(得分:4)

因此,您需要处理存储过程生成的额外结果集。 mysqli驱动程序为此提供了一种方法,但CodeIgniter可能无法使该方法可用。

来自https://ellislab.com/forums/viewthread/73714/#562711

  

我只是将以下内容添加到缺少的mysqli_result.php中   这个命令出于一些奇怪的原因。 (下   /system/database/drivers/mysqli/mysqli_result.php)

// --------------------------------------------------------------------
  /**
   * Read the next result
   *
   * @return  null
   */   
  function next_result()
  {
    if (is_object($this->conn_id))
    {
      return mysqli_next_result($this->conn_id);
    }
  }
  // -------------------------------------------------------------------- 
     

然后在我的模型中,我只是调用$ result-> next_result()来松开   预期的无关结果。