jqgrid报表报错

WBOY
發布: 2016-06-13 12:48:35
原創
736 人瀏覽過

jqgrid表格报错
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'payments' in 'field list'

<br />
<?php<br />
require_once '../../../jq-config.php';<br />
// include the jqGrid Class<br />
require_once ABSPATH."php/jqGrid.php";<br />
// include the driver class<br />
require_once ABSPATH."php/jqGridPdo.php";<br />
// Connection to the server<br />
$conn = new PDO(DB_DSN,DB_USER,DB_PASSWORD);<br />
// Tell the db that we use utf-8<br />
$conn->query("SET NAMES utf8");<br />
<br />
// Create the jqGrid instance<br />
$grid = new jqGridRender($conn);<br />
// Write the SQL Query<br />
$grid->SelectCommand = 'SELECT id,order_id,payments-date FROM `sale_orders`';<br />
// set the ouput format to json<br />
$grid->dataType = 'json';<br />
// Let the grid create the model from SQL query<br />
$grid->setColModel();<br />
// Set the url from where we obtain the data<br />
$grid->setUrl('grid.php');<br />
// Set alternate background using altRows property<br />
$grid->setGridOptions(array(<br />
    "rowNum"=>10,<br />
    "sortname"=>"id",<br />
    "altRows"=>true,<br />
    "multiselect"=>true,<br />
    "rowList"=>array(10,20,50),<br />
    ));<br />
// Change some property of the field(s)<br />
$grid->setColProperty("id", array("label"=>"ID", "width"=>60));<br />
$grid->setColProperty("payments-date", array(<br />
    "formatter"=>"date",<br />
    "formatoptions"=>array("srcformat"=>"Y-m-d H:i:s","newformat"=>"m/d/Y")<br />
    )<br />
);<br />
// Enjoy<br />
$grid->renderGrid('#grid','#pager',true, null, null, true,true);<br />
$conn = null;<br />
?><br />
登入後複製



------解决方案--------------------
字段名是 payments-date 吗?中间有减号?
`payments-date`
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!