Data.DBXCommonTable.TDBXDelegateTable.GetUpdatedRows

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: protected
Source:
Data.DBXCommonTable.pas
Data.DBXCommonTable.hpp
Unit: Data.DBXCommonTable
Parent: TDBXDelegateTable

Delphi

function GetUpdatedRows: TDBXTable; override;

C++

virtual TDBXTable* __fastcall GetUpdatedRows();

Description

Returns a TDBXTable with the updated rows.

Data.DBXCommonTable.TDBXDelegateTable.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