[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Position the dataset on the first record.
Source position: db.pas line 1640
public procedure TDataSet.First; |
First positions the dataset on the first record. This action will trigger the TDataset.BeforeScroll and TDataset.AfterScroll events. After the action is completed, the TDataset.BOF property will be True.
If the dataset is unidirectional or is closed, an EDatabaseError exception will be raised.
|
Go to the previous record |
|
|
Navigate forward to the last record |
|
|
Go to the next record in the dataset. |
|
|
Is the cursor at the beginning of the data (on the first record) |
|
|
Event triggered before the cursor changes position. |
|
|
Event triggered after the cursor has changed position. |