Thanks cf_output and Dan -
I've changed my query to the following, and it works (I took
Dan's suggestion and used the db representation of the current
date/time, in SQL Server it is GetDate(); I've added the mask to
get just the MM/DD/YYYY format):
<cfquery name="calendar"
datasource="#attributes.datasource1#">
SELECT date FROM calendar
WHERE calendar.date >= (Convert(varchar(10),
GetDate(),101))
AND calendar.type = 'B'
order by date
</cfquery>