外部サーバーに SQL サーバーとデータベースのセットアップがあり (ドメイン名を「hello.com」と呼びましょう)、C# プログラムを介してこのサーバーに接続したいと考えています。これまでのところ、これがあります(すべてのサーバー/データベースの詳細は実際のものとは異なります):
private static void SetupSQL()
{
string connectionString = "server=hello.com; database=db1; uid=user1; pwd=xxxxx;";
connection = new SqlConnection();
connection.ConnectionString = connectionString;
try
{
connection.Open();
Console.WriteLine("Connected");
}
catch (Exception e)
{
Console.WriteLine(e.Message.ToString());
}
}
これは私にエラーメッセージを与えています:
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: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
すべての接続文字列を確認しましたが、同じコンピューターで SQLWorkbench を開いてデータベースのクエリを実行しているため、リモート アクセスが許可されています。
何か案は?