Data.DB.TDataSet.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

Description

Creates an instance of a TDataSet component.

Call Create to instantiate a dataset component at runtime. TDataSet contains abstract methods, and is not intended to be used in applications. Instead, applications instantiate dataset descendants such as TClientDataSet, TADODataSet, TTable, TQuery, TStoredProc, or TSQLDataSet.

AOwner is the component, typically a form or data module, that is responsible for freeing the dataset. It becomes the value of the Owner property.

Create creates the auxiliary objects such as empty field and field definition lists and initializes default property values (such as setting AutoCalcFields to true).

See Also