aColumn is NULL
Hello:
I have the <cfquery... below
<cfquery name="theQuery" datasource="#application.dsn#">
SELECT position_key, position_name,inactive_date
FROM aTable
WHERE aColumn IS NULL
</cfquery>
The Oracle is backend.
My question that does the line "WHERE aColumn IS NULL" is possible for SQL Injection?
If so, how should I add <cfqueryparam>
I tried couple scenario:
This line WHERE aColumn IS <cfqueryparam null="true"> error: missing NULL keyword
This line WHERE aColumn = <cfqueryparam null="true"> : the result is diff from
WHERE aColumn IS NULL
Any advice please.
Thank you very much
