Search Results for

    Show / Hide Table of Contents

    Enum MySqlBulkLoaderConflictOption

    Represents the behavior when conflicts arise during bulk loading operations.

    Namespace: MySql.Data.MySqlClient
    Assembly: MySql.Data.dll
    Version: 9.3.0
    Syntax
    public enum MySqlBulkLoaderConflictOption

    Fields

    Name Description
    Ignore

    Ignore any rows where the primary key conflicts.

    None

    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.

    Replace

    Replace column values when a key conflict occurs.

    In This Article
    Back to top Copyright © 2021, 2025, Oracle and/or its affiliates.