0

我正在尝试将 phpgrid lite 与 CodeIgniter 集成,我已经按照 phpgrid 网站中的程序正确完成了所有功能,但它显示错误: PHPGRID_ERROR: Could not execute query. Error 101

4

2 回答 2

3

从错误信息中可以看出,Sql 查询执行失败。所以它可能根本与CI无关。但是,假设您已遵循教程或教程,您没有发布任何代码片段,因此很难确定错误的根本原因。

您应该首先启用 DEBUG ( https://phpgrid.uservoice.com/knowledgebase/articles/215888 ) 并找出引发错误的 Sql。

于 2016-10-17T05:22:23.163 回答
1

Set DEBUG to true in conf.php

define('DEBUG', true);

Open developer tool in web browser for any Sql error messages.

enter image description here

于 2016-10-20T01:35:29.723 回答