Used to control the type of statement used for loading data.
property InsertMode: TIBCInsertMode default imInsert;
Use the InsertMode property to specify the type of statement used for loading data using the TIBCLoader component.
When the property value is imInsert , then the INSERT INTO statement is used. When the property value is imUpdateOrInsert , then the UPDATE OR INSERT INTO statement is used.
Using of UPDATE OR INSERT INTO statements is available in Firebird 2.1 and higher.
The default value is imInsert .