MySqlConnectionProtocol Enumeration

MySQL Connector/Net

MySqlConnectionProtocol Enumeration
Allows the user to specify the type of connection that should be used.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public enum MySqlConnectionProtocol
Public Enumeration MySqlConnectionProtocol
public enum class MySqlConnectionProtocol
type MySqlConnectionProtocol
Members
  Member nameValueDescription
Sockets1 TCP/IP style connection. Works everywhere.
Socket1
Tcp1
Pipe2 Named pipe connection. Works only on Windows systems.
NamedPipe2
UnixSocket3 Unix domain socket connection. Works only with Unix systems.
Unix3
SharedMemory4 Shared memory connection. Currently works only with Windows systems.
Memory4
See Also