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

时间:2015-12-14 04:40:10

标签: php sql codeigniter

错误讯息:

**Error Number: 2014
Commands out of sync; you can't run this command now
call allBarang('','')
Filename: C:/xampp/htdocs/jualbarang/application/models/dbAll.php
Line Number: 18**

Snapshot

我不知道为什么不能在同一个函数中调用2个模型,我在index()中设置了函数,因为第一页必须有一些模型

1 个答案:

答案 0 :(得分:0)

/system/database/drivers/mysqli/mysqli_result.php

CodeIgniter当前不允许在同一请求期间运行多个存储过程。

以下方法已添加到CI_DB_mysqli_result类:

function next_result()
{
  if (is_object($this->conn_id))
  {
      return mysqli_next_result($this->conn_id);
  }
}

来源:http://forum.codeigniter.com/thread-758.html