Eww. There's no need for evaluate():

<cfset tempQuery = VARIABLES["Songs" & k]>
<cfloop query="tempQuery">
       <cfoutput>#tempQuery.name#</cfoutput>
</cfloop>

or of course just use the column name, since we're inside a loop:

<cfloop query="Songs#k#">
       <cfoutput>#name#</cfoutput>
   </cfloop>

On Tue, May 13, 2008 at 3:16 PM, William Seiter  wrote:
> #evaluate('Songs#k#.name')#

-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305149
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to