この文字列で更新する必要があるSQL Serverの名前と ID を入力できる、GUI を使用して単純なアプリケーションを作成したいと考えています。
update docs SET locked=0 WHERE ID=(id entered in GUI)
なにか提案を?
この文字列で更新する必要があるSQL Serverの名前と ID を入力できる、GUI を使用して単純なアプリケーションを作成したいと考えています。
update docs SET locked=0 WHERE ID=(id entered in GUI)
なにか提案を?
更新を実行する C# 関数を作成できます。
public int Update(int id)
{
string connectionString = "... put the connection string to your db here ...";
using (var conn = new SqlConnection(connectionString))
using (var cmd = conn.CreateCommand())
{
conn.Open();
cmd.CommandText = "UPDATE docs SET locked = 0 WHERE ID = @id";
cmd.Parameters.AddWithValue("@id", id);
return cmd.ExecuteNonQuery();
}
}
次に、UI から取得した動的な値を渡すことで、この関数を呼び出すことができます。
int id;
if (int.TryParse(someTextBox.Text, out id))
{
int affectedRows = Update(id);
if (affectedRows == 0)
{
MessageBox.Show("No rows were updated because the database doesn't contain a matching record");
}
}
else
{
MessageBox.Show("You have entered an invalid ID");
}
.Net フレームワークは、SQL 接続に ADO.Net を使用します。ADO.Net の単純なクエリは、次のように実行できます。
SqlConnection conn = new SqlConnection("Data Source=(local);Initial Catalog=Yourdatabase;Integrated Security=SSPI");
int res = 0;
try
{
conn.Open();
SqlCommand cmd = new SqlCommand("update docs SET locked=0 WHERE ID= @id");
cmd.Parameters.AddWithValue("@id", txtid.text);
res = cmd.ExecuteNonQuery();
}catch(Exception err){
MessageBox.Show(err.getMessage());
}finally{
conn.Close();
}