[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Navigate forward to the last record
Source position: db.pas line 1652
public procedure TDataSet.Last; |
Last puts the cursor at the last record in the dataset, fetching more records from the underlying database if needed. It is equivalent to moving to the last record and calling TDataset.Next. After a call to Last, the TDataset.EOF property will be True.
Calling this method will trigger the TDataset.BeforeScroll and TDataset.AfterScroll events.
|
Position the dataset on the first record. |
|
|
Go to the next record in the dataset. |
|
|
Indicates whether the last record has been reached. |
|
|
Event triggered before the cursor changes position. |
|
|
Event triggered after the cursor has changed position. |