Data.DBXDBReaders.TDBXTableStorage.Insert

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Insert; overload; override;
procedure Insert(const AIndex: Integer); reintroduce; overload;

C++

virtual void __fastcall Insert(void)/* overload */;
HIDESBASE void __fastcall Insert(const int AIndex)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Data.DBXDBReaders.pas
Data.DBXDBReaders.hpp
Data.DBXDBReaders TDBXTableStorage

Description

Inserts a new row into the table.

Data.DBXDBReaders.TDBXTableStorage.Insert inherits from Data.DBXCommonTable.TDBXTable.Insert. All content below this line refers to Data.DBXCommonTable.TDBXTable.Insert.

Inserts a new row into the table.

Insert is used to insert a new empty row in the table. By default, Insert raises an 'Unsupported operation' exception, so every descendant of TDBXTable must implement this method if this operation is supported.

See Also