RE: does StructNew() destroy old structure completely?

2002-09-18 Thread Raymond Camden
structNew will kill the old data. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : cfjedimaster My ally is the Force, and a powerful ally it is. - Yoda -Original Message-

RE: does StructNew() destroy old structure completely?

2002-09-18 Thread Tony Weeg
Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 10:36 AM To: CF-Talk Subject: RE: does StructNew() destroy old structure completely? structNew will kill the old data. === Raymond

RE: does StructNew() destroy old structure completely?

2002-09-18 Thread Raymond Camden
-Talk Subject: RE: does StructNew() destroy old structure completely? so, like his question, does that muck things up at all? memory wise? just wondering. also, does it spell out the lack of need for structClear() ..tony Tony Weeg Senior Web Developer Information System Design

RE: does StructNew() destroy old structure completely?

2002-09-18 Thread Tony Weeg
Subject: RE: does StructNew() destroy old structure completely? It doesn't harm anything at all. I guess you could say you don't need structClear(), but it's a matter of personal preference. If my intent was to clear the struct, I'd use it just because it makes more sense to me when I read

RE: does StructNew() destroy old structure completely?

2002-09-18 Thread James Ang
-Talk Subject: RE: does StructNew() destroy old structure completely? It doesn't harm anything at all. I guess you could say you don't need structClear(), but it's a matter of personal preference. If my intent was to clear the struct, I'd use it just because it makes more sense to me when I read

RE: does StructNew() destroy old structure completely?

2002-09-18 Thread Dave Watts
Memory deallocation, from my experience, happens at the end of a request. It makes sense that way, and that would be how I would implement the CFML interpreter engine anyway since all the engine needs to do is to keep track of the heap memory assigned to the thread performing the CFM

RE: does StructNew() destroy old structure completely?

2002-09-18 Thread James Ang
Thanks for the reference Dave! :) James Ang Programmer MedSeek, Inc. [EMAIL PROTECTED] -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 9:55 AM To: CF-Talk Subject: RE: does StructNew() destroy old