NUM-DBS and LDBNAME etc

jdpjamesp

ProgressTalk.com Moderator
Staff member
I'm playing around with NUM-DBS and LDBNAME() and such funtions. I was wondering if it's possible to ascertain with what connection parameters a db was connected? I connect a load of dbs to a session using a pf and am trying to work with the settings for the dbs...
 
Does DBPARAM help?:
Code:
DEFINE VARIABLE i AS INTEGER NO-UNDO.
DO i = 1 TO NUM-DBS:
   MESSAGE LDBNAME(i) SKIP DBPARAM(i) VIEW-AS ALERT-BOX INFORMATION.
END.
 
Back
Top