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

MySqlLoaderPriority Enumeration
Specifies the priority of the load operation.
Syntax
'Declaration
 
Public Enum MySqlLoaderPriority 
   Inherits System.Enum
   Implements 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

See Also