Data.DBXCommonTable.TDBXDelegateTable.GetInsertedRows

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetInsertedRows: TDBXTable; override;

C++

virtual TDBXTable* __fastcall GetInsertedRows();

Properties

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

Description

Returns a TDBXTable with inserted rows.

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

Returns a TDBXTable with inserted rows.

GetInsertedRows is the protected getter method for the InsertedRows property. By default, GetInsertedRows raises an 'Unsupported operation' exception, so every descendant of TDBXTable must implement this method. GetInsertedRows returns a TDBXTable with the rows inserted in the current table.

See Also