Andreas
10/01/2022, 4:08 PMTim
10/01/2022, 7:00 PMAndreas
10/01/2022, 9:22 PMAndreas
10/01/2022, 9:27 PMAdam Cameron
SELECT <cfqueryparam value="#someDynamicColumnReference#">
In the hope that you'll end up with:
SELECT some_column_name
(which I suspect is what yer trying to do).
What you will end up with is:
SELECT 'some_column_name'
IE: a string literal, not a reference to a column.Adam Cameron
Nate Smith
10/06/2022, 10:20 PM