Data.Win.ADODB.TCustomADODataSet.RecordStatus

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property RecordStatus: TRecordStatusSet read GetRecordStatus;

C++

__property TRecordStatusSet RecordStatus = {read=GetRecordStatus, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB TCustomADODataSet

Description

Indicates the status of the current row.

Read RecordStatus to determine the status of the current row relative to batch updates or other bulk operations. Among other record state aspects, RecordStatus indicates whether the current record is new, modified, deleted, or unmodified. RecordStatus will also give an indication why a row is not saved when modifying, adding, or deleting data.

Note: RecordStatus only provides meaningful information if the dataset is opened in batch update mode.

See Also