Do I have to use cfqueryparam for static values?
Say I have this as my where clause:
WHERE status = 1
Is there any benefit when doing it like:
WHERE id = <cfqueryparam value="1" maxlength="32" cfsqltype="cf_sql_integer">
I use that 1 value repeatedly throughout my queries.