3

每当我尝试在我的本地主机上使用插入执行 SQL 查询时,它都可以使用简单的 C# 代码和 Visual Studio 中的 Mysql.Data 参考。但是当我尝试连接到我自己在网络服务器上的数据库时,它给了我一个例外:

MySql.Data.dll MySql.Data.MySqlClient.MySqlException (0x80004005) 中发生了“MySql.Data.MySqlClient.MySqlException”类型的第一次机会异常:无法连接到任何指定的 MySQL 主机。

我的网络服务器是否在阻止来自 Visual Studio / C# 的外部请求?如何打开服务器以允许这些请求?

谢谢你。

4

1 回答 1

1

I had developed one application in c# in that I had used MySQL database as back end that stored at bigrock.com. In your application their will be simple mistake in connection string. And turn off your firewall and your antivirus settings to off.

This is the right format of MySQL database connection string :-

string connectionString = "Server=Your_Server_Name;Uid=Your_User_Name;Database=Your_Database_Name;port=Your_Port_No;Pwd=Your_Password;Allow Zero Datetime=true";
于 2015-04-15T11:52:40.830 回答