Returns the number of rows given in the query object result set
queryRecordCount(query)
→ returns numeric
query.recordCount()
heroes = queryNew("id,Name",
"integer,varchar",
[
{"id":1,"Name":"Bruce Banner"},
{"id":2,"Name":"Tony Stark"},
{"id":3,"Name":"Bobby Drake"},
{"id":4,"Name":"Jean Grey"}
]
)
writeDump(heroes.recordCount());
Expected Result: 4
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.