1

可能重复:
System.Data.SqlClient.SqlException 网络相关或特定于实例的错误

我在 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) 

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

请帮帮我

4

3 回答 3

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是可以解析)。

于 2012-10-10T09:34:12.660 回答
1

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

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

于 2012-10-10T09:54:41.243 回答
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.
于 2012-10-10T09:38:25.383 回答