> > Arrays are passed by value, like simple variables are. > > Queries and structures are passed by reference, in which > > case you're correct about that "pointer" thing. > > Just to clarify that statement, does this mean that I do not > need to use the Duplicate() function around an array, but I > do need to use it with queries and structures?
Yes, that's correct, assuming you want to pass all of these explicitly by value instead of by reference. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ______________________________________________________________________ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm 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

