Kbase P26516: How to connect to dataserver schema from 4GL without knowing
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  6/4/2003 |
|
Status: Unverified
GOAL:
How to connect to dataserver schema from 4GL without knowing the logical name?
FACT(s) (Environment):
Progress 9.x
FIX:
Once connected to the schema holder extract the logical name from _db table and build the CONNECT statement for dataserver holder using _db-name fields.
Example:
FOR EACH _db
WHERE _db-type = "MSS" :
CONNECT -db DSN-name -ld VALUE( _db-name ) -U ... .
END.