Data.Win.ADODB.TCustomADODataSet.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TCustomADODataSet(System::Classes::TComponent* AOwner);

Properties

Type Visibility Source Unit Parent
constructor public
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB TCustomADODataSet

Description

Creates an instance of a TCustomADODataSet component.

Call Create to instantiate an ADO dataset component at runtime. TCustomADODataSet contains abstract methods, and is not intended to be used in applications. Instead, applications instantiate dataset descendants such as TADODataSet, TADOTable, TADOQuery, or TADOStoredProc.

AOwner is the component that becomes the value of the Owner property. Typically, this is the form or data module that contains the dataset.

See Also