IDatabase.SecurityPackage

Syntax

SecurityPackage: String;

Description

The SecurityPackage property determines identifier of database security package.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Database: IDatabase;
    s: String;
Begin
    MB:=MetabaseClass.Active;
    Database:=MB.ItemById("BD").Bind As IDatabase;
    s:=Database.SecurityPackage;
End Sub UserProc;

After executing the example, the "s" variable contains the identifier of security package of the DB database.

See also:

IDatabase