MySqlBulkLoaderConflictOption Enumeration

MySQL Connector/Net

MySqlBulkLoaderConflictOption Enumeration

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public enum MySqlBulkLoaderConflictOption
Public Enumeration MySqlBulkLoaderConflictOption
public enum class MySqlBulkLoaderConflictOption
type MySqlBulkLoaderConflictOption
Members
  Member nameValueDescription
None0 This 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.
Replace1 Replace column values when a key conflict occurs.
Ignore2 Ignore any rows where the primary key conflicts.
See Also