Accessing Table and Query Fields
Previous
Top
Next
Accessing record field values
You can access the field values of the current row by accessing a corresponding TField object.
Label1.Caption := ABSTable1.FieldByName(
'FirstName'
).AsString;
To learn how to update field values of existing record, see
Editing Records
topic.
For details on how to insert a new record with the specified field values, see
Adding New Records
topic.