WPF应用程序SQL连接字符串错误

时间:2014-09-19 20:27:50

标签: c# sql sql-server wpf

这个问题可能已被问了一千次,但我看到的所有答案都与我的问题无关。

我在本地设置了一个asp.net网站连接到sql,我在WPF App.config文件中使用了完全相同的连接字符串

<connectionStrings>
    <add name="TrackingConnection" providerName="System.Data.SqlClient" connectionString="Data Source=RAIDSHIPPING\FRTOOLS; Initial Catalog=SHIPPING; User Id=sa; Password=password" />
    <add name="RMAConnection" providerName="System.Data.SqlClient" connectionString="Data Source=RAIDSHIPPING\FRTOOLS; Initial Catalog=FRTOOLSRMA; User Id=sa; Password=password" />
    <add name="PickListConnection" providerName="System.Data.SqlClient" connectionString="Data Source=RAIDSHIPPING\FRTOOLS; Initial Catalog=Picklist; User Id=sa; Password=password" />
    <add name="ShipWorksConnection" providerName="System.Data.SqlClient" connectionString="Data Source=RAIDSHIPPING\FRTOOLS; Initial Catalog=ShipWorks; User Id=sa; Password=password" />
    <add name="SupplyConnection" providerName="System.Data.SqlClient" connectionString="Data Source=RAIDSHIPPING\FRTOOLS; Initial Catalog=SupplyManager; User Id=sa; Password=password" />
</connectionStrings>  

像往常一样,这适用于本地计算机,但在网络计算机上,我得到了一个&#34;在建立与SQL Server的连接时发生了与网络相关或特定于实例的错误。&#34;错误。

就像我说的那样,这个连接字符串完全是从asp.net web应用程序复制的,web.config文件连接字符串是网络机器正常使用的。我将App.config属性设置为Copy也始终将Sql server配置设置为启用命名管道和TCP / IP。 Windows防火墙已打开端口1433。我认为正在设置的复制始终属性将解决问题,因为程序将无法工作,因为图像导致它中断,直到我将其属性设置为始终复制。我重新启动了SQL Server和计算机。

0 个答案:

没有答案