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

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:271045
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