Hi

I am trying do following
<cfloop from="1" to="#ArrayLen(soundUrlCols)#" index="i">
                                                                                
       <cfloop query="GetDataFile">                                             
       <cfif GetDataFile.soundUrlCols[i]   neq "">                              
       <cfscript>                                                               
               SoundFileObj.createWavFile(#soundUrlCols[i]#,#fileName#);
               </cfscript>
                                                                                
               </cfif>
       </cfloop>
</cfloop>
In this code I m having error at GetDataFile.soundUrlCols[i]. Now 
SoundurlCol[1]Array converts to Column Names of that query, when i hard code i 
just put GetdataFile.ColumnName. Here column name is stored in SoundUrlCol 
array and I am looping through it and inserting it in       
GetDataFile.soundUrlCols[i], but it is giving me error saying "Element 
SOUNDURLCOLS is undefined in GETDATAFILE" I tried using 
GetDataFile.#soundUrlCols[i]#
it gives an error "A CFML variable name cannot end with a "." character. "

Can anyone tell me what is the problem here, what needs to be changed on that 
line.

Thanks
Deepak

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/

Archive: 
http://www.houseoffusion.com/groups/CF-Newbie/message.cfm/messageid:2598
Subscription: http://www.houseoffusion.com/groups/CF-Newbie/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15

Reply via email to