0
您需要连接到我在godaddy.com上设置的mysql服务器
我的代码是
var dbcon : IDbConnection; //port is 3303
var connectionString : String = "Server=xxxxx.xx.xx.x; Uid=lxxxx; Pwd=xxxx; Database=lxxx;";
dbcon = new SqlConnection(connectionString);
dbcon.Open();
然而我的连接被拒绝,我怀疑我需要输入端口号。任何人都告诉我如何在我的连接字符串中指定端口号? THX
答案 0 :(得分:1)
通常将端口号指定为服务器名称的一部分。例如'localhost:8808'
答案 1 :(得分:0)
使用
Server = <assigned-dns-name-or-ip>:3303, Uid=<youruserid>, Pwd=<yourpassword>, Database=<databasename>
答案 2 :(得分:0)
String = "Server=xxxxx.xx.xx.x; Uid=lxxxx; Pwd=xxxx; Database=lxxx; Port=3303;";
答案 3 :(得分:0)
SQLConnection类用于连接SQL Server。要连接到MySQL,您必须使用MySQL .NET Connector。使用MySQL Connector时,您应该使用MySQLConnection类。 connection string options reference应该能够帮助您正确地选择所有选项。使用MySQL连接器时,除非使用默认值3306以外的其他内容,否则无需指定端口。