Subject Re: effect of nullifying an object reference
From Gaetano <gaetanodd@hotmail.com>
Date Thu, 1 Oct 2020 07:39:24 +1000
Newsgroups dbase.getting-started

On 01/10/2020 06:13, Ken Mayer wrote:
> On 9/30/2020 12:56 PM, Gaetano wrote:
>>
>> Hi All,
>>
>> If I nullify an object such as oCGI wiht oCGI = Null, does that also
>> release the memory that the assocArray was using?
>
> Not completely. The usual way people do this:
>
> oCGI = null // null out the object reference to it
> release oCGI // release the memory variable oCGI
>
> Ken
>
thanks Ken.