Using the TRDSConnection Component in Delphi

Someone can explain to me what the use of the ADO TRDSConnection component is . Give a small usage example.

Thanks in advance.

+3
source share
2 answers

From MS doc: Microsoft Remote Data Service (RDS) allows you to remotely use an ADO recordset using one of three protocols (HTTP, HTTPS, or DCOM). RDS was originally intended for web clients, but you can implement your RDS client in any development environment or language of your choice. You can optionally implement a server-side business object to create and retrieve a set of records, or you can use the default business object that RDS provides in its server components. You must use the Internet Information Server (IIS) to host the RDS server components only when using the HTTP or HTTPS protocols. Using DCOM to marshal objects (records or others) using RDS eliminates the IIS dependency. RDS provides the benefits of client-side data caching,Updated data and support for some ActiveX controls that support data.

RDS demo ( Delphi2007): ...Documents\RAD Studio\5.0\DEmos\DelphiWin32\VCL\ADO\RDS D2007.
( Appserver.pas ClientMain.pas). - AdoTest .

. :
http://edn.embarcadero.com/article/28502
http://msdn.microsoft.com/en-us/library/ms676550%28VS.85%29.aspx
http://msdn.microsoft.com/en-us/library/ms677528%28VS.85%29.aspx

. Windows\MSDFMAP.INI, ClientMain.pas

+3

RDS - , Microsoft ADO. TRDSConnection ( ), (back end tier).

DatasetProvider ClientDataset DataSnap.

RDS MSDN ADO.

0

Source: https://habr.com/ru/post/1731210/


All Articles