概要
地味に接続で時間喰ったので掲載
環境
VisualStudio 2017 (C#)
SQLServer 2012
コード
DBAccess.cs
void Test02()
{
SqlConnection connection = new SqlConnection();
SqlCommand command = new SqlCommand();
var dt = new DataTable();
try
{
command.Connection = connection;
connection.ConnectionString = @"Data Source=[server];Persist Security Info=True;Initial
Catalog=[dataBase];User ID=[id];Password=[pass];";
// データベースの接続開始
connection.Open();
// SELECT文を設定します。
command.CommandText = "SELECT * FROM [tableName] " ;
// SQLの実行
var adapter = new SqlDataAdapter(command);
adapter.Fill(dt);
}
catch (Exception exception)
{
Console.WriteLine(exception.Message);
throw;
}
finally
{
// データベースの接続終了
connection.Close();
}
}
}
かかったとこ
テンプレは見つかるけど結局コネクトのとこで躓いてた