Data.DBXCommonTable.TDBXTable.GetDeletedRows

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetDeletedRows: TDBXTable; virtual;

C++

virtual TDBXTable* __fastcall GetDeletedRows();

Properties

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

Description

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