错误讯息:
**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**
我不知道为什么不能在同一个函数中调用2个模型,我在index()
中设置了函数,因为第一页必须有一些模型
答案 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);
}
}