Data.DBXCommonTable.TDBXTable.GetInsertedRows

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetInsertedRows: TDBXTable; virtual;

C++

virtual TDBXTable* __fastcall GetInsertedRows();

Properties

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

Description

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