IMetaDictionaryInstance.Scheme

Syntax

Scheme: Object;

Description

The Scheme property returns data of time series database that uses a system table.

Example

Example executing requires the DictInst object (IMetaDictionaryInstance interface).

Add links to the Cubes, Metabase, Rds system assemblies.

Sub UserProc;
Var
    DictInst: IMetaDictionaryInstance;
    RubInstance: IRubricatorInstance;
    Rub: IMetabaseObject;
Begin
    RubInstance := DictInst.Scheme As IRubricatorInstance;
    Rub := RubInstance.Rubricator As IMetabaseObject;
    Debug.WriteLine(Rub.Name);
End Sub UserProc;

After executing the example, the console window displays the name of time series database that uses the DictInst object data.

See also:

IMetaDictionaryInstance