Here is the code I am having trouble with:
sqlString = "SELECT current_weekday, " &_
"current_open_time, current_close_time FROM current_hours " &_
" WHERE current_date = " & (Date)
SET RS = Con.Execute( sqlString )
I have accessed this record using another "WHERE" statement and then
compared "current_date" and "(Date)". These values are equal with no leading
or trailing blanks. There is something wrong with the "WHERE" statement, but
I don't know what. Does anyone have any suggestions?