Data.DBXDBReaders.TDBXTableStorage.GetDeletedRows

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

function GetDeletedRows: TDBXTable; override;

C++

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

Description

Returns a TDBXTable with deleted rows.

Data.DBXDBReaders.TDBXTableStorage.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