Enum AlternativeBulkCopy
Defines type of multi-row INSERT operation to generate for RowByRow bulk copy mode.
Namespace: LinqToDB.DataProvider.Oracle
Assembly: linq2db.dll
Syntax
public enum AlternativeBulkCopy : int
Fields
Name | Description |
---|---|
InsertAll | This mode generates INSERT ALL statement. Note that INSERT ALL doesn't support sequences and will use single generated value for all rows.
|
InsertDual | This mode generates INSERT ... SELECT statement.
|
InsertInto | This mode performs regular INSERT INTO query with array of values for each column.
|