使用TcpClient连接MySQL

时间:2015-09-16 09:56:12

标签: 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...

0 个答案:

没有答案