Data.DB.TDataSet.InternalClose

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TDataSet

Delphi

procedure InternalClose; virtual; abstract;

C++

virtual void __fastcall InternalClose() = 0 ;

Description

Closes the dataset table and disconnects the fields.

InternalClose is used to close the table that holds the data. The method is abstract, so every TDataSet descendant must implement it in its specific way to close the data stream and also to disconnect the dataset from TFields objects.

See Also