Can anyone tell me what's wrong with this code?
I've got other code on the page doing the exact same thing,
but with different queries and arrays and no errors are occuring.

<CFSET MultipleWaivers=ArrayNew(3)>

<CFQUERY Name="GetUC" Datasource="#DSN#">
     Select UtilityCompanyID, UCName
     from UtilityCompanies
  order by UCName
</CFQUERY>

<CFLOOP Query="GetUC">
     <CFSET MultipleWaivers[CurrentRow][1] =
GetUC.UtilityCompanyID[CurrentRow]>
</CFLOOP>

Here's the error message:

Error Diagnostic Information

An error occurred while evaluating the expression:


 MultipleWaivers[CurrentRow][1] = GetUC.UtilityCompanyID[CurrentRow]


Error near line 132, column 39.

______________________________________________________________________
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to