Data.Win.ADODB.TADODataSet.RDSConnection

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Unit: Data.Win.ADODB
Parent: TADODataSet

Delphi

property RDSConnection: TRDSConnection read FRDSConnection write SetRDSConnection;

C++

__property TRDSConnection* RDSConnection = {read=FRDSConnection, write=SetRDSConnection};

Description

Specifies the RDS connection component to use.

Use RDSConnection to specify the RDS connection component to use to obtain the recordset when the TADODataSet is opened. This property is mutually exclusive of the Connection property. If the TADODataSet uses RDSConnection to connect to the default RDS DataFactory, then the ConnectionString property should also be set with the connection information required by the DataFactory. The CommandText property should either specify the name of a property on the associated business object or be an SQL query.

See Also