private void button2_Click(object sender, EventArgs e)
{
string sorgu = "Update Kisiler1 Set ad=@ad,soyad=@soyad,telefon=@tel Where id=@no";
komut = new SqlCommand(sorgu, baglanti);
komut.Parameters.AddWithValue("@no", Convert.ToInt32(textBox1.Text));
komut.Parameters.AddWithValue("@ad", textBox2.Text);
komut.Parameters.AddWithValue("@soyad", textBox3.Text);
komut.Parameters.AddWithValue("@tel", textBox4.Text);
baglanti.Open();
komut.ExecuteNonQuery();
baglanti.Close();
KisiGetir();
}
{
string sorgu = "Update Kisiler1 Set ad=@ad,soyad=@soyad,telefon=@tel Where id=@no";
komut = new SqlCommand(sorgu, baglanti);
komut.Parameters.AddWithValue("@no", Convert.ToInt32(textBox1.Text));
komut.Parameters.AddWithValue("@ad", textBox2.Text);
komut.Parameters.AddWithValue("@soyad", textBox3.Text);
komut.Parameters.AddWithValue("@tel", textBox4.Text);
baglanti.Open();
komut.ExecuteNonQuery();
baglanti.Close();
KisiGetir();
}
Yorumlar
Yorum Gönder