PreviousNextIndex

DBRESTRICTIONS function

Returns a character string that describes features that are not supported for this database. You can use this function with OpenEdge DataServers.

Syntax

DBRESTRICTIONS 
  ( { integer-expression | logical-name | alias } 
    [ , table-name ] 
  ) 

integer-expression
logical-name or alias
table-name
Example

This procedure displays the logical name and database restrictions of all connected databases:

r-dbrest.p
DEFINE VARIABLE ix AS INTEGER NO-UNDO. 
REPEAT ix = 1 to NUM-DBS: 
  DISPLAY LDBNAME(ix) LABEL "Database" 
    DBRESTRICTIONS(ix) FORMAT "x(40)" LABEL "Restrictions". 
END. 

Notes
See also

ALIAS function, CONNECT statement, CONNECTED function, CREATE ALIAS statement, CREATE CALL statement, DATASERVERS function, DBCODEPAGE function, DBCOLLATION function, DBTYPE function, DBVERSION function, DELETE ALIAS statement, DISCONNECT statement, FRAME-DB function, LDBNAME function, NUM-DBS function, PDBNAME function, SDBNAME function


OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex