Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 4 of 4
  1. #1
    SUF6NEWBIE Guest

    Using Tables and Memory resources handling

    Greetings fellow travellers,

    How does the 'clearing' of 'filled tables work when the 'function
    has completed. Do I need to do something like 'clear-empty' the
    tables, if so ????. My interest is basically for low-end systems,
    low memory etc. Or should I not bother...

    My App. has AMS handle memory in the 'windows settings'

    any suggestions.. tks

    addn: is the memory space released back to the system immediatley
    or only on APP EXIT or system Restart.
    Last edited by SUF6NEWBIE; 04-18-2004 at 06:04 PM.

  2. #2
    SUF6NEWBIE Guest
    Hmmm..wonder if my brain works in a similar fashion..

    feedback anyone ?

  3. #3
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    If you mean you want to release the memory used by the table you have a couple options.

    1. Declare the variable/table as local (i.e. local tblFiles) Using local keeps the contents of the varibale "alive" for only the event/function it is in.

    2. To release the variable, set it to nil

    tblFiles = nil;





    Quote Originally Posted by SUF6NEWBIE
    Hmmm..wonder if my brain works in a similar fashion..

    feedback anyone ?

  4. #4
    SUF6NEWBIE Guest
    tks Worm....I'll try the options on the lowend test machine
    I'm trying not to place a 'minimum memory requirement'
    for my APP. I'll keep your advice in mind when building
    routines..

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts