Datasnap.DBClient.TCustomClientDataSet.AppServer

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AppServer: IAppServer read GetAppServer write SetAppServer;

C++

__property Datasnap::Midas::_di_IAppServer AppServer = {read=GetAppServer, write=SetAppServer};

Properties

Type Visibility Source Unit Parent
property public
Datasnap.DBClient.pas
Datasnap.DBClient.hpp
Datasnap.DBClient TCustomClientDataSet

Description

Provides access to the interface the client dataset uses to communicate with a provider.

Use AppServer to communicate with the provider that supplies data to and resolves updates for the client dataset. If the client dataset uses a provider in the same process space, AppServer is the interface to an internally created object that dispatches IAppServer calls to the local or internal provider. If the provider is on a remote application server, AppServer has the same value as the AppServer property of the connection component.

Applications do not need to work directly with the IAppServer interface. The properties and methods of the client dataset are automatically translated into IAppServer calls as needed.

See Also