3-2:org.railo.cfml.Query
last edited by
acampolonghi
on 25-Oct-2010
Execute queries from cfscript with the following syntax:
var q = new Query(); q.setSql("Select * from team where dom = :domain and firstname = ?"); q.addParam(name="domain",value="com",cfsqltype="cf_sql_varchar"); q.addParam(value="gert",cfsqltype="cf_sql_varchar"); var qres = q.execute().getResult();
SideBar
User Login