无法从另一台计算机连接sql server 2008

时间:2012-10-10 09:30:16

标签: c# winforms sql-server-2008 connection-string

  

可能重复:
  System.Data.SqlClient.SqlException A network-related or instance-specific error

我在c#中使用winform应用程序连接到我自己的数据库并且工作正常我当前的sql连接字符串是:

SqlConnection con = new SqlConnection("Data Source=ITPL_PC1;Initial Catalog=Data_Project;Persist Security Info=True;user id=sa;Password=insforia"); 

但是当我把这个winform带到另一台计算机时它无法工作..然后我将我的连接字符串更改为:

SqlConnection con = new SqlConnection("Data Source=192.168.0.28\\ITPL_PC1;Initial Catalog=Data_Project;Persist Security Info=True;user id=sa;Password=insforia"); 

但它不起作用......

我已经更改了远程访问的sql server中的所有设置,但仍显示错误

Sql Exception was unhandled 
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: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) 

是我的连接字符串错了吗?应该是什么?

请帮帮我

3 个答案:

答案 0 :(得分:2)

Data Source=ITPL_PC1

标识名为ITPL_PC1服务器。您已连接到此服务器上的默认实例。

Data Source=192.168.0.28\ITPL_PC1

标识在IP地址为192.168.0.28的服务器上运行的名为ITPL_PC1实例。我们不知道这台服务器的名称。

如果要连接的实例是ITPL_PC1上的默认实例,则第一个版本应始终有效(提供ITPL_PC1可以解析)。

答案 1 :(得分:1)

Windows安全性可能会阻止访问。您可以尝试下面的内容 1.在运行窗口中键入services.msc,进入Windows服务管理控制台 2.在显示的窗口中,您可以看到服务列表。从列表中找出Base Filtering Engine
3.右键单击并停止它。它完成了

我经过大量的谷歌搜索后修复了同样的问题。(对我来说,即使从sql配置管理器启用TCP / IP后也无法正常工作)

答案 2 :(得分:0)

           First you open SQL managnebt studio and connect to another pc sql server :

         Please follow bolew step :
            Strat -> program -> window sql server 2008 -> configuration tools 
            --> sql server Configuration manager -->
            Start sql server browser service
    -----------
    Next --->Sql serverNetework COnfiguration  --> Enable all Protocls and
    also Sql Native Client.. --> Enable all Protocls  then
    --------------
    reatsrt all service and connect to sql
-------------------------------------------------
If you get connection then SQL Database to connect database from visual studio from there to find connection string and copy and paste to connection string.