Data.SqlExpr.TSQLDataSet.Create

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: constructor
Visibility: public
Source:
Data.SqlExpr.pas
Data.SqlExpr.hpp
Unit: Data.SqlExpr
Parent: TSQLDataSet

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TSQLDataSet(System::Classes::TComponent* AOwner)/* overload */;
/* TCustomSQLDataSet.Create */ inline __fastcall TSQLDataSet(System::Classes::TComponent* AOwner, Data::Dbxcommon::TDBXReader* DBXReader, bool AOwnsInstance)/* overload */ : TCustomSQLDataSet(AOwner, DBXReader, AOwnsInstance) { }

Description

Creates an instance of a TSQLDataSet component.

Call Create to instantiate an SQL dataset component at runtime. SQL datasets placed in forms or data modules at design time are created automatically.

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

See Also