0

我有一个在 VPS 上运行的 MS SQL Server 2005 Express。我在 Python 中使用 pymssql 通过以下代码连接到我的服务器:

conn = pymssql.connect(host='host:port', user='me', password='pwd', database='db')

它工作得很好。当我尝试使用以下代码从 ASP.NET C# 页面连接到服务器时:

SqlConnection myConnection = new SqlConnection("Data Source=host,port;Network Library=DBMSSOCN; Initial Catalog=db;User ID=me;Password=pwd;");

myConnection.Open();

当我运行 ASP.NET 页面时,我在 myConnection.Open(); 处得到以下异常:

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: TCP Provider, error: 0 - A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.)

我尝试重新启动 SQL Server,但没有运气。谁能指出我在这里缺少的东西?

谢谢!

4

2 回答 2

0

仍然不起作用..我可以使用 SQL Management Studio 连接到远程服务器。我在 Server Name 字段中输入 host,port\SQLEXPRESS (当然我的实际 IP 号作为主机和我的实际端口),选择 SQL Security 并输入我的用户名和密码,它工作得很好。当我尝试从 ASP.NET 页面连接时,它不起作用 - 我收到上述错误。这可能与托管我的 asp.net 页面的公司有关吗?(GoDaddy)这里又是代码..(假设我的主机是 11.22.33.44 并且我的数据库名为 bla

string connectString = @"Data Source=11.22.33.44,1433\SQLEXPRESS;Network Library=DBMSSOCN;Initial Catalog=bla;User ID=username;Password=pwd;";
SqlConnection myConnection = new SqlConnection(connectString);
myConnection.Open();

再次感谢

于 2010-05-20T18:51:39.843 回答
0

假设您的主机是 localhost。当您使用 SQLEXPRESS 时,您需要在您的实例名称中指定它。

Loke 这个:Data Source=localhost\SQLEXPRESS如果它绑定到本地主机。否则它可能只适用于:Data Source=.\SQLEXPRESS.

如果您安装了管理工作室,您可以启动它并检查它使用的连接字符串!

于 2010-05-20T09:06:48.037 回答