Data.Win.ADODB.TADOConnection.ConnectionObject

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ConnectionObject: _Connection read FConnectionObject write SetConnectionObject;

C++

__property Winapi::Adoint::_di__Connection ConnectionObject = {read=FConnectionObject, write=SetConnectionObject};

Properties

Type Visibility Source Unit Parent
property public
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB TADOConnection

Description

Provides direct access to the ADO connection object.

Use ConnectionObject to get direct access to the ADO connection object the connection component represents. This direct access reference allows an application to use properties and methods of the underlying connection object. Accessing the underlying connection object is especially useful for utilizing properties and methods of the connection object not surfaced in TADOConnection.

Note: Use of ConnectionObject to directly access the underlying ADO connection object requires a good working knowledge of ADO objects in general and the ADO connection object in specific. Using the connection object directly is not recommended unless you are familiar with connection object operations. Consult the Microsoft Data Store SDK help for specific information on using ADO connection objects.

See Also