FireDAC.Comp.DataSet.TFDDataSet.RowState2UpdateStatus

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: protected
Source:
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
Unit: FireDAC.Comp.DataSet
Parent: TFDDataSet

Delphi

function RowState2UpdateStatus(ARowState: TFDDatSRowState): TUpdateStatus;

C++

Data::Db::TUpdateStatus __fastcall RowState2UpdateStatus(Firedac::Dats::TFDDatSRowState ARowState);

Description

The protected method that returns the update status of a row in the dataset.

The supported row state values are:

Status 

Description 

usUnmodified

Row is in its original unmodified state. 

usModified

A row has been modified.

usDeleted

A row has been deleted.

usInserted

A row has been inserted.

See Also