I have a table with values under a column named:str_condition
values in this column can be : variables.bit_male
/ application.bit_male
/ isdefined('session.int_user_id')
The value can be complex as it can be.
I need to use the value of the values in the column.
Currently, what I am doing is
<cfif evaluate(query.str_condition) eq true>
.....code....
</cfif>
Now, I need to omit the evaluate.