Data.DBXDBReaders.TDBXTableStorage.GetInsertedRows

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

C++

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

Description

Returns a TDBXTable with inserted rows.

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