Data.DBXCommonTable.TDBXDelegateTable.GetDeletedRows

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetDeletedRows: TDBXTable; override;

C++

virtual TDBXTable* __fastcall GetDeletedRows();

Properties

Type Visibility Source Unit Parent
function protected
Data.DBXCommonTable.pas
Data.DBXCommonTable.hpp
Data.DBXCommonTable TDBXDelegateTable

Description

Returns a TDBXTable with deleted rows.

Data.DBXCommonTable.TDBXDelegateTable.GetDeletedRows inherits from Data.DBXCommonTable.TDBXTable.GetDeletedRows. All content below this line refers to Data.DBXCommonTable.TDBXTable.GetDeletedRows.

Returns a TDBXTable with deleted rows.

GetDeletedRows is the protected getter method for the DeletedRows property. By default, GetDeletedRows raises an 'Unsupported operation' exception, so every descendant of TDBXTable must implement this method. GetDeletedRows returns a TDBXTable with rows deleted from the current table.

See Also