SQLCommandを使用したデータベース操作の基本
SQLCommandのインスタンスを作成する:using System.Data.SqlClient; // データベース接続文字列を指定してSQLConnectionを作成 SqlConnection connection = new SqlConnection("データベース接続文字列"); // SQLCommandのインスタンスを作成 SqlCommand command = new SqlCommand(); command.Connection = connection;>>More