Whatever message this page gives is out now! Go check it out!
WriteBody(value)Parameter | Description |
value | A string or any variable. |
<cfscript>
query = {datasource="cfartgallery",name="x" };
cfquery(attributeCollection=query)
{
writeBody("select * from art where artistid=1 and artid = ");
cfqueryparam(value="1",cfsqltype="CF_SQL_INTEGER");
}
WriteDump(x);
</cfscript>