Data.DB.TDataSet.InternalInsert

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 InternalInsert; virtual;

C++

virtual void __fastcall InternalInsert();

Description

Used to insert an empty record in the dataset.

InternalInsert is called by Insert to add an empty record to the dataset. The method is virtual and blank, so every TDataSet descendant must override it in its specific way.

See Also