API:Data.Win.ADODB.TADOStoredProc.Create

From RAD Studio API Documentation

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

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Description

Creates an instance of a TCustomADODataSet component. Data.Win.ADODB.TADOStoredProc.Create inherits from Data.Win.ADODB.TCustomADODataSet.Create. All content below this line refers to Data.Win.ADODB.TCustomADODataSet.Create.

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