Search Results for

    Show / Hide Table of Contents

    Enum MySqlBulkLoaderPriority

    Represents the priority set for bulk loading operations.

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

    Fields

    Name Description
    Concurrent

    Concurrent priority is only relevant for MyISAM tables and signals that if the table has no free blocks in the middle that other readers can retrieve data from the table while the load operation is happening.

    Low

    Low priority will cause the load operation to wait until all readers of the table have finished. This only affects storage engines that use only table-level locking such as MyISAM, Memory, and Merge.

    None

    This is the default and indicates normal priority

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