MySqlBulkLoaderPriority Enumeration

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.8.4.0

Syntax

C#
public enum MySqlBulkLoaderPriority
Visual Basic
Public Enumeration MySqlBulkLoaderPriority
Visual C++
public enum class MySqlBulkLoaderPriority

Members

Member name Value Description
None 0 This is the default and indicates normal priority
Low 1 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.
Concurrent 2 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.

See Also