Enum MySqlConnectionProtocol
Allows the user to specify the type of connection that should be used.
Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data.dll
Version: 9.1.0
Syntax
public enum MySqlConnectionProtocol
Fields
Name | Description |
---|---|
Memory | Shared memory connection. Currently works only with Windows systems. |
NamedPipe | Named pipe connection. Works only on Windows systems. |
Pipe | Named pipe connection. Works only on Windows systems. |
SharedMemory | Shared memory connection. Currently works only with Windows systems. |
Socket | TCP/IP style connection. Works everywhere. |
Sockets | TCP/IP style connection. Works everywhere. |
Tcp | TCP/IP style connection. Works everywhere. |
Unix | Unix domain socket connection. Works only with Unix systems. |
UnixSocket | Unix domain socket connection. Works only with Unix systems. |