API:Data.DBXCommonTable.TDBXDelegateTable.GetInsertedRows

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 GetInsertedRows: TDBXTable; override;

C++

virtual TDBXTable* __fastcall GetInsertedRows();

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