标签: c# mysql
是否可以使用TcpClient连接数据库?
TcpClient client = new TcpClient(); IPEndPoint serverEndPoint = new IPEndPoint(IPAddress.Parse("127.0.0.1"), 3306); client.Connect(serverEndPoint); //Missing Code, don't know how to proceed...