Data.DBXDBReaders.TDBXTableStorage.GetUpdatedRows

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetUpdatedRows: TDBXTable; override;

C++

virtual Data::Dbxcommontable::TDBXTable* __fastcall GetUpdatedRows();

Properties

Type Visibility Source Unit Parent
function protected
Data.DBXDBReaders.pas
Data.DBXDBReaders.hpp
Data.DBXDBReaders TDBXTableStorage

Description

Returns a TDBXTable with the updated rows.

Data.DBXDBReaders.TDBXTableStorage.GetUpdatedRows inherits from Data.DBXCommonTable.TDBXTable.GetUpdatedRows. All content below this line refers to Data.DBXCommonTable.TDBXTable.GetUpdatedRows.

Returns a TDBXTable with the updated rows.

GetUpdatedRows is the protected getter method for the UpdatedRows property. By default, GetUpdatedRows raises an 'Unsupported operation' exception, so every descendant of TDBXTable must implement this method. GetUpdatedRows returns a TDBXTable containing the rows that were updated in the current table.

See Also