Data.Win.ADODB.TCustomADODataSet.Create

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: constructor
Visibility: public
Source:
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Unit: Data.Win.ADODB
Parent: TCustomADODataSet

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

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