Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxServerModeDataSource Class

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

#Declaration

Delphi
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