LOCAL Variables Scope Conflicts With ColdFusion Query of Queries

// Declare local scope.
var LOCAL = StructNew();
 
// These are now all local.
LOCAL.Foo = 1;
LOCAL.Bar = QueryNew( "id" );
LOCAL.Test = StructNew();

For Cut-and-Paste