IMetabase.Definition

Syntax

Definition: IMetabaseDefinition;

Description

The Definition property returns the current repository description, stored in repositories manager.

Example

Sub Main;

Var

MB: IMetabase;

MDef: IMetabaseDefinition;

Begin

MB := MetabaseClass.Active;

MDef := MB.Definition;

Debug.WriteLine(MDef.LogonData.ParamValue("SERVER"));

Debug.WriteLine(MDef.LogonData.ParamValue("SCHEME"));

End Sub Main;

After executing the example a name of server and scheme, to which the current connection is performed, is displayed in the development environment console.

See also:

IMetabase