Skip to main content

TdxServerModeDataSource Class

The base class for table-based server mode data sources.

Declaration

TdxServerModeDataSource = class(
    TdxServerModeCustomDataSource
)

Remarks

This class implements operations that are common to database tables and views. It extends the ancestor class with members that allow you to do the following:

  • Specify the name of a target database table or view (TableName);

  • Switch the read-only state of the data source (ReadOnly);

  • Obtain the names of tables contained in the target database linked to the data source (PopulateTableNames).

TdxServerModeDataSource descendants – TdxServerModeFireDACDataSource, TdxServerModeDBXDataSource, and TdxServerModeADODataSource – extend the base class with the capability to access data via a FireDAC, dbExpress, or ADO connection object, respectively.

See Also