I am embarrassed to ask this but I am going crazy.
I am using the following query.
The problem is sched_date is a varchar(50). This happened when the database was converted to mySql. Converting it to a date field is not an option at this time due to other programmers.
The code does not work I assume because I am comparing a string to a date.
I am using the following query.
Code:
<cfquery name="dddd" username="rrrr" password="ddddd" datasource ="ggggg">
select sched_date, districth, districta, gameid, hour, minutes, meridian
from spSchedule
where sched_date = #createodbcdate(Now())#
</cfquery>
The code does not work I assume because I am comparing a string to a date.