<cfif queryname.recordcount>
        showstuff
</cfif>

Now if your using aggregate functions (like max() min() avg()) you need to check for a 
len in the field your looking for, because the record count will be 1 even if it's 
just for an empty field, so I will do:

<cfif len(queryname.columnname)>
        show stuff
</cfif>

Tim

-----Original Message-----
From: Tim Laureska [mailto:hometeam@;goeaston.net]
Sent: Thursday, October 31, 2002 8:27 AM
To: CF-Talk
Subject: basic question - testing for no reuslts from query


I'm ashamed to say I've been banging my head on this for an hour. what
is a simple way to code a statement that displays a message when a query
produces no results.. like:
 
 <CFIF.blah, blah>
NO RESULTS
<cfelse>
#RESULTS#
<CFIF>
I'm looking for what the "blah, blah" would be??
 
Tim Laureska
 




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Reply via email to