SecurityPackage: String;
The SecurityPackage property determines identifier of database security package.
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: