Data.Win.ADODB.TCustomADODataSet.RecordStatus

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Unit: Data.Win.ADODB
Parent: TCustomADODataSet

Delphi

property RecordStatus: TRecordStatusSet read GetRecordStatus;

C++

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

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