Is there anyway of closing an individual database, without the Close Databases command closing all free tables, when and when not a database is open and current. Would appreciate any help, can´t find anything in help or VFP manuals about it.
Hi my friend,
Is there anyway of closing an individual database, without the Close Databases command closing all free tables, when and when not a database is open and current
Close Databases command DOESN'T close all free tables when and when not a database is open and current. I think you misunderstood this command.
When you have a database opened and also free tables opened,
issuing the command
Code:
Close Databases
close only the current database and leave your free tables open and untouched. You just have to make sure that your database is the currently selected one before you issuing
Code:
Close Databases
command.
To do this, use the command
Code:
SET DATABASE TO Your_DataBaseName
Then when you use
Code:
Close Databases
, you will find that the data base "Your_DataBaseName" is closed but your free tables and the other databases opened [if any]
still open and this command DOESN'T affect them.
Hope this will help you my friend. Walid Magd
Engwam@Hotmail.com
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.