Reconnecting to a database

Chris Schippers

New Member
The situation:

I connect to a database using the .pf file.
Certain program's in our application have to be compiled without this database connected.
So my program would do something like this:

update vPROGRAM_NAME.

if vPROGRAM_NAME = "NODB.P"
then
disconnect DB.

compile vPROGRAM_NAME save.

......................
And here I want to reconnect my database with all the parameters like -H -N -S.

We have to many different databases where this program has to work. So I don't know these parameters.

Does anybody know how I can get to the information of the -H -N and -S parameter from the database I connected in the .PF file?
 
Top