-2

Mynewdatabaseこのプロジェクトのデータ ソースを追加したときに (おそらく) 生成された既定の接続文字列を使用して、SQL Server データベース ( ) に接続しようとしています。ただし、これまでのところ接続できません。「サーバーが見つからないか、アクセスできませんでした」というエラーが表示されます。

これは私のコードです。あなたが提供できるどんな助けにも感謝します:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data.SqlClient;

namespace Parsevcf2sql
{
class Program
{
    static void Main(string[] args)
    {
        // here is where I get what I believe is an appropriate connection string
        string cs = Parsevcf2sql.Properties.Settings.Default.MynewdatabaseConnectionString;
        SqlConnection myconnection = new SqlConnection(cs);

        Console.WriteLine(cs);

        try
        {
            myconnection.Open();
            Console.WriteLine("This worked!");
        }
        catch (Exception e)
        {
            Console.WriteLine(e.ToString());
        }
    }
  }
}
4

1 に答える 1