IBX.IBCustomDataSet.TIBCustomDataSet.InternalAddRecord

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure InternalAddRecord(Buffer: TRecBuf; Append: Boolean); override;

C++

virtual void __fastcall InternalAddRecord(NativeInt Buffer, bool Append)/* overload */;
inline void __fastcall  InternalAddRecord _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (System::PByte Buffer, bool Append){ Data::Db::TDataSet::InternalAddRecord(Buffer, Append); }
inline void __fastcall  InternalAddRecord _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (void * Buffer, bool Append){ Data::Db::TDataSet::InternalAddRecord(Buffer, Append); }

Properties

Type Visibility Source Unit Parent
procedure
function
protected
IBX.IBCustomDataSet.pas
IBX.IBCustomDataSet.hpp
IBX.IBCustomDataSet TIBCustomDataSet

Description

Adds a record to the dataset.

IBX.IBCustomDataSet.TIBCustomDataSet.InternalAddRecord inherits from Data.DB.TDataSet.InternalAddRecord. All content below this line refers to Data.DB.TDataSet.InternalAddRecord.

Adds a record to the dataset.

InternalAddRecord is internally called when a record is added to the dataset. The method is virtual and blank, so every TDataSet descendant must override this method in its specific way. The Buffer parameter is a pointer to the record to add. When the Append parameter is True, the record is appended to the dataset; when it is False, the record is inserted in the dataset. The position of the appended/inserted record depends on the database type.

See Also