ColdFusion:尝试在CFScript中查询数据库

前端之家收集整理的这篇文章主要介绍了ColdFusion:尝试在CFScript中查询数据库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的老板要我使用cfscript代替标签进行数据库交互.有人知道任何好的教程吗?我购买了Adobe ColdFusion应用程序开发书,第2卷.但它在脚本编写方面没有太多内容.我做了谷歌并发现了 this site,但它没有解释太多.

有没有人知道有关访问CFScript数据库的任何好教程?

基本上我必须将以下内容转换为使用CFScript:

<cfquery name="drafts" datasource="ICEchat">
    SELECT * from Messages where IsTemp=1 and LinkA=#FORM.LinkA# and LinkB=#FORM.LinkA#
</cfquery>
<cfif drafts.recordcount GT '0'>
    <cfquery name="Attachments" datasource="ICEchat">
        SELECT * FROM Attachments where id=2
    </cfquery>
    { Message:"<cfoutput query="drafts">#Message#</cfoutput>",Attachments:[<cfoutput query="attachments">
        "#url#"<cfif attachments.currentRow LT attachments.recordcount>,</cfif>
    </cfoutput>]}
<cfelse>
    <cfquery name="addrecord" datasource="ICEchat">
        INSERT INTO Messages 
        VALUES(1,1,' ',1)
    </cfquery>
    { Message:"NA",Attachments:[]}
</cfif>

解决方法

从谷歌 4th link上的“cfscript查询教程”:
<CFSCRIPT>
    myQry = new Query(); // new query object     
    myQry.setsql("select bookid,title,genre from app.books where bookid = :bookid"); //set query
    myQry.addParam(name="bookid",value="5",CFsqlTYPE="CF_sql_INTEGER"); // add query param
    qryRes = myQry.execute(); // execute query
    writedump(qryRes.getResult().recordcount,true); // get resultcount
    writedump(qryRes.getResult(),false); // dump result
    writeoutput('<BR>');
</CFSCRIPT>

那应该告诉你需要知道的一切.

此外,你真的不应该手动创建JSON,无论它多么简单.使用serializeJson().

原文链接:https://www.f2er.com/mssql/79068.html

猜你在找的MsSQL相关文章