Data.DB.TDataSet.InternalLast

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure InternalLast; virtual;

C++

virtual void __fastcall InternalLast();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

Description

Moves to a position "after" the last record of the dataset.

InternalLast is called by Last. The descendant classes of TDataSet must override this method. The method must implement a "crash" behavior, meaning that the current position must move "after" the last record of the dataset.

See Also