IRubricator.Truncate

Syntax

Truncate;

Description

The Truncate method clears the time series database.

Comments

On executing the method:

Example

Executing the example requires that the repository contains a time series database with the OBJ153 identifier. Add links to the Metabase, Cubes system assemblies.

Sub UserProc;
    Var
        mb: IMetabase;
        rub: IRubricator;
    Begin
        mb := MetabaseClass.Active;
        rub := mb.ItemById("OBJ153").Bind As IRubricator;
        rub.Truncate;
End Sub UserProc;

After execution the time series database with OBJ153 identifier will be cleared.

See also:

IRubricator