<cfoutput query="aQuery">
<cfoutput query="bQuery">
     ....
</cfoutput>
</cfoutput>

That is illegal because ColdFusion does some automatic variable scoping 
that would just not work in such a situation.  To do this you have to 
use the <cfloop query...> form.

I.E.
<cfoutput>
<cfloop query="aQuery">
<cfloop query="bQuery">
     ....
</cfloop>
</cfloop>
</cfoutput>

Just realize with this from CF is not going to automatically scope the 
query column names for you and you will have to keep track of the rows.  
You output will look something like this.

#aQuery.aColumn[aQuery.currentRow]# and #bQuery.bColumn[bQuery.currentRow]#



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331786
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to