DataPath

<< Click to Display Table of Contents >>

Navigation:  Apollo VCL Components > Apollo VCL Component Reference > TApolloDatabase > TApolloDatabase Properties >

DataPath

Declaration

property DataPath: String;

Description

Used in conjunction with the DataPathAlias property, the DataPath property specifies the physical path of the tables (e.g.: C:\Data).

 

This is similar to the standard Delphi / C++Builder TDatabase.AliasName property.

Delphi Example

ApolloTable1.DataPath := 'c:\Apollo\data';

ApolloDatabase1.DataPathAlias := 'MYDATA';

// Point it to 'c:\Apollo\data'

ApolloTable1.DatabaseName := 'MYDATA';

 

See Also

DataPathAlias