Whatever message this page gives is out now! Go check it out!
IsQuery(value)| Parameter | Description |
value | Query variable |
<cfscript>
myQuery = queryNew("id,name,amount","Integer,Varchar,Integer",
[
{id=1,name="One",amount=15},
{id=2,name="Two",amount=18},
{id=3,name="Three",amount=32}
]);
writeOutput("Is myQuery a query object? ")
writeOutput(IsQuery(myQuery))
</cfscript>