0

執筆時点ですべての更新プログラムを適用した Windows 10 Pro および VS2015 Pro を使用しています。セーフ モードで VS を実行し、Visual Studio のインストールを修復してもうまくいきませんでした。SSMS と他のアプリはいつでもデータベースにアクセスできることに注意してください。

コードを縮小して、SQL データベース接続を開くことができます。

Dim sqlCon As New SqlConnection("Server=server\instance;Database=database;User Id=…;Password=…")
sqlCon.Open()
'Works after reboot as many times as required but fails after build or rebuild!
Console.WriteLine(“Connection Opened”)  
sqlCon.Close()
sqlCon.Dispose()

再構築後のエラーは次のとおりです。

Unhandled Exception: System.Data.SqlClient.SqlException: 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

1 に答える 1

0

IT チームが PC に Bitdefender Endpoint Security Tools をインストールしたことが判明しました。幸いなことに、適切なファイアウォール プロファイルを社内の Bitdefender 管理サーバーに追加するのは簡単でした。

于 2016-08-28T23:30:11.680 に答える