Confused...
I'm trying to switch to using cfqueryparams but I have something weird happening... This is what works:
SELECT ...
WHERE trade_date_time >= #createODBCDateTime(ARGUMENTS.send_start_date)#
AND trade_date_time < #createODBCDateTime(ARGUMENTS.send_end_date)#
And this does not
SELECT ...
WHERE trade_date_time >= <cfqueryparam value="#send_start_date#" cfsqltype="cf_sql_date">
AND trade_date_time < <cfqueryparam value="#send_end_date#" cfsqltype="cf_sql_date">
Why?
I'm just sending a start and end date and want to find the entries between them.
