Question
cfx return variable vs. query
Hi:
I am using c++ to write a custom coldfusion tag. There are two ways of returning values, one is to use:
request.setVariable(name, value);
The other one is to use queries:
pRequest->AddQuery(name, columns);
...
I do not understand the difference between them. Can someone make an example of the difference of what they will look like after returned. Or to demonstrate in anyway that I could understand.
Thanks.
