> However, if session.user is a "complex" variable, a query, > array, etc., then using... > > ..will need to be locked because you haven't created a new > variable. You have simply created a "pointer" to session.user.
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. 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

