dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlLoaderConflictOption Enumeration

MySqlLoaderConflictOption Enumeration
Specifies handling of input rows that duplicate existing rows on unique key values.
Syntax
'Declaration
 
Public Enum MySqlLoaderConflictOption 
   Inherits System.Enum
   Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
 
Members
MemberDescription
IgnoreIgnore any rows where the primary key conflicts.
NoneThis is the default and indicates normal operation. In the event of a LOCAL load, this is the same as ignore. When the data file is on the server, then a key conflict will cause an error to be thrown and the rest of the data file ignored.
ReplaceReplace column values when a key conflict occurs.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Devart.Data.MySql.MySqlLoaderConflictOption

See Also