来自使用cfscript创建的查询的cfoutput

时间:2018-02-23 18:02:51

标签: coldfusion cfml

我试图赶上cfscript语法,迟到了。我在cfscript中创建了一个简单的查询,它可以很好地执行和转储正确的数据:

qPositive = new Query(datasource="#APPLICATION.DSN#");
qPositive.setSQL(" my sql here ");
qPositive.addParam(name="xid",value="178",CFSQLTYPE="CF_SQL_INT");
qryPositive = qPositive.execute();  
writeDump(qryPositive.getResult());

完全符合我的期望。但是,在实际页面中

<cfoutput query="qryPositive">

抛出一个未定义的错误。

1 个答案:

答案 0 :(得分:5)

getResult()

之后添加execute()
qryPositive = qPositive.execute().getResult();