Question
Performance while checking record count of a query object
I can check whether a query results contains any record count or not in any of the following ways.
1 <cfif myQueryObject.recordCount>
---- some logic ----
</cfif>
2 <cfif myQueryObject.recordCount GT 0>
---- some logic ----
</cfif>
Can any one guide me saying which one will provide a better performance.
Your timely help is well appreciated.
