L
LucB
When my application
- starts up, the paths to all linked backend databases are checked/renewed;
- shuts down, all linked backend databases are compacted.
Assuming I don't want to lookup the paths again at shutdown, which is the
more efficient way to preserve the path strings between startup and
shutdown:
- storage in a globally declared public array;
- storage in a temporary table (TableDef created in VBA);
- output to a temporary .txt-file?
I was thinking 'efficient' both in terms of memory usage and speed, but
other considerations welcome.
- starts up, the paths to all linked backend databases are checked/renewed;
- shuts down, all linked backend databases are compacted.
Assuming I don't want to lookup the paths again at shutdown, which is the
more efficient way to preserve the path strings between startup and
shutdown:
- storage in a globally declared public array;
- storage in a temporary table (TableDef created in VBA);
- output to a temporary .txt-file?
I was thinking 'efficient' both in terms of memory usage and speed, but
other considerations welcome.