FireDAC.Comp.DataSet.TFDDataSet.RowState2UpdateStatus

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function RowState2UpdateStatus(ARowState: TFDDatSRowState): TUpdateStatus;

C++

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

Properties

Type Visibility Source Unit Parent
function protected
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
FireDAC.Comp.DataSet TFDDataSet

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