Consultor Eletrônico



Kbase P10099: How to disable the auto-connect feature in the 4GL.
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   16/10/2008
Status: Unverified

GOAL:

How to disable the auto-connect feature in the 4GL.

FIX:

There is no direct way to do that.

The workaround is to connect your database with a different logical name, and then create an alias.
For example, assuming that you have auto-connect information for database 'myDB' in your working database:

CONNECT myDB -ld veryUnlikelyLogicalDbName <your connection parameters>.
CREATE ALIAS myDB FOR DATABASE veryUnlikelyLogicalDbName.

This way, the auto-connect information for myDB will not be used, nevetheless you can run programs which depend on logical name 'myDB'.