重複
の可能性: 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 サーバーのすべての設定を変更しましたが、それでもエラーが表示されます
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)
接続文字列が間違っていますか? それはどうあるべきですか?
助けてください