> <cfset application.ds = "mydb" /> > > Would that be any different than using: > > <cfset this.ds = "mydb" />
Yes, those are two different things. The first creates a variable in the Application scope. The second creates a property of the application.cfc instance. > Also, to clarify, the "separate" Coldfusion servers for Dev and Test are > separate > instances upon the same JRun, so some kind of variable scope "leakage" might > make > sense. What exactly do you mean by "separate instances upon the same JRun"? If you mean that you have separate JRun instances, they should not share memory at all - each should be represented by a separate Windows service (assuming you're running Windows). If, on the other hand, you've deployed multiple CF WARs to the same JRun server - and I'm not sure that's even possible - they would share memory. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324272 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

