cfqueryparam from clause
Trying,
select ... from <cfqueryparam value="#leftside#" cfsqltype="CF_SQL_CHAR" maxlength="19">...
I am getting an error that I must declare table variable @p14. Leftside is initialized in ColdFusion.
Tried declare @p14 var(19) as the first line in the cfquery, right before the query itself, but got error saying @p14 was already declared.
How do you make this work ?
