Hi,
I'm a newbie that has inherited code that I need to maitain and I would appreciate some guidance.
I am having problems with the Evaluate function.
eg.
<cfif Evaluate(#table# & ".RecordCount") GT 0>
This has an Exception
Variable TableName.RecordCount is undefined
If I change to
<cfif Evaluate(table & "." & RecordCount) GT 0>
it works, the other code worked on version 6.0. Were there changes to the Evaluate function in 6.1 that is causing this or it a server configuration issue.
TIA
I'm a newbie that has inherited code that I need to maitain and I would appreciate some guidance.
I am having problems with the Evaluate function.
eg.
<cfif Evaluate(#table# & ".RecordCount") GT 0>
This has an Exception
Variable TableName.RecordCount is undefined
If I change to
<cfif Evaluate(table & "." & RecordCount) GT 0>
it works, the other code worked on version 6.0. Were there changes to the Evaluate function in 6.1 that is causing this or it a server configuration issue.
TIA