• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

jqgrid报表报错

php 搞代码 3年前 (2022-01-24) 9次浏览 已收录 0个评论

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 />?<strong style="color:transparent">¥本文来源gaodai#ma#com搞@@代~&码网^</strong><small>搞gaodaima代码</small>><br />

——解决方案——————–
字段名是 payments-date 吗?中间有减号?
`payments-date`


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:jqgrid报表报错
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址