IDtParadoxProvider.Path

Syntax

Path: String;

Description

The Path property determines the path to directory with Paradox tables, from which data is imported.

Example

Executing the example requires that the repository contains an ETL task with the ETL identifier and the Paradox table Table_1.Db in the root of the C disk.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    EtlTask: IEtlTask;
    EtlProvider: IEtlPlainDataProvider;
    ParadoxProvider: IDtParadoxProvider;
    WxProvider: IWxRectangle;
    WxETLProvider: IWxETLObject;
Begin
    MB := MetabaseClass.Active;
    // ETL task search. Repository object with the ETL identifier
    MObj := MB.ItemById("ETL").Edit;
    EtlTask := MObj As IEtlTask;
    // Start of data provider creation
    // Create the "Import from Paradox" object
    EtlProvider := EtlTask.Create(EtlObjectType.PlainDataParadoxProvider) As IEtlPlainDataProvider;
    EtlProvider := EtlProvider.Edit;
    EtlProvider.Id := "Paradox_Provider";
    EtlProvider.Name := "Import from Paradox";
    EtlProvider.Description := "Import from Paradox";
    // Set up data provider
    ParadoxProvider := EtlProvider.Provider As IDtParadoxProvider;
    ParadoxProvider.DriverVersion := "Paradox 7.X";
    ParadoxProvider.Path := "c:\";
    ParadoxProvider.Query := "Select * from Table_1";
    EtlProvider.FillDefault;
    // Save data provider
    EtlProvider.Save;
    // End of data provider creation
    // Start of visual object creation
    WxProvider := EtlTask.Workspace.CreateRectangle;
    WxETLProvider := New WxETLObject.Create;
    WxETLProvider.ETLObject := EtlProvider;
    WxProvider.Style.TextPosition := WxTextPosition.Bottom;
    WxProvider.Style.PictureMarginTop := -10;
    WxProvider.PinPosition := New GxPointF.Create(5050);
    WxProvider.Extension := WxETLProvider As IWxShapeExtension;
    // End of visual object creation
    // Save ETL task
    MObj.Save;
End Sub UserProc;

After executing the example the Import from Paradox object is created in the ETL task. This data provider imports data from the specified table. During connection the Paradox 7.X drivers are used.

See also:

IDtParadoxProvider