无法从ASP.NET C#页面连接到SQL Server 2005 Express

时间:2010-05-20 08:31:27

标签: c# sql-server exception pymssql

我在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,但我没有运气。 谁能指出我在这里缺少的东西?

谢谢!

2 个答案:

答案 0 :(得分:0)

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

如果它绑定到localhost,请转发:Data Source=localhost\SQLEXPRESS。否则它可能只适用于:Data Source=.\SQLEXPRESS

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

答案 1 :(得分:0)

仍然无效.. 我可以使用SQL Management Studio连接到远程服务器。 我在服务器名称字段中输入主机,端口\ SQLEXPRESS(当然我是我的实际IP号码作为主机和我的实际端口),选择SQL安全并输入我的用户名和密码,它运行正常。 当我尝试从ASP.NET页面连接时,它只是不起作用 - 我得到上述错误。它可以与托管我的asp.net页面的公司有关吗? (去吧爸爸) 这里是代码..(假设我的主机是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();

再次感谢