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

In This Topic
    MySqlLoaderPriority Enumeration
    In This Topic
    Specifies the priority of the load operation.
    Syntax
    'Declaration
     
    Public Enum MySqlLoaderPriority 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
    public enum MySqlLoaderPriority : System.Enum, System.IComparableSystem.IConvertibleSystem.IFormattable  
    Members
    MemberDescription
    ConcurrentConcurrent priority is only relevant for MyISAM tables. It signals that if the table has no free blocks in the middle, other readers can retrieve data from the table while the load operation is happening.
    LowConcurrent 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.
    NoneNormal priority. This is the default value.
    Inheritance Hierarchy

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

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also