FireDAC.Comp.DataSet.TFDDataSet.InternalOpen

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure InternalOpen; override;

C++

virtual void __fastcall InternalOpen();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
FireDAC.Comp.DataSet TFDDataSet

Description

Initializes and opens the data stream.

FireDAC.Comp.DataSet.TFDDataSet.InternalOpen inherits from Data.DB.TDataSet.InternalOpen. All content below this line refers to Data.DB.TDataSet.InternalOpen.

Initializes and opens the data stream.

InternalOpen is used to open the stream that holds the data. The method is abstract, so every TDataSet descendant must implement it in its specific way to initialize and open the data stream and also to connect the dataset to TFields objects. The method should call InternalInitFieldDefs to determine the field definitions.

See Also