private void button1_Click(object sender, EventArgs e)
{
string sorgu = "Insert into Kisiler1 (id,ad,soyad,telefon,kurum,alan,tarih) values (@id,@ad,@soyad,@tel,@kurum,@alan,@tarih)";
komut = new SqlCommand(sorgu, baglanti);
komut.Parameters.AddWithValue("@id", textBox1.Text);
komut.Parameters.AddWithValue("@ad", textBox2.Text);
komut.Parameters.AddWithValue("@soyad", textBox3.Text);
komut.Parameters.AddWithValue("@tel", textBox4.Text);
komut.Parameters.AddWithValue("@kurum", textBox5.Text);
komut.Parameters.AddWithValue("@alan", textBox7.Text);
komut.Parameters.AddWithValue("@tarih", textBox6.Text);
baglanti.Open();
komut.ExecuteNonQuery();
baglanti.Close();
KisiGetir();
}
{
string sorgu = "Insert into Kisiler1 (id,ad,soyad,telefon,kurum,alan,tarih) values (@id,@ad,@soyad,@tel,@kurum,@alan,@tarih)";
komut = new SqlCommand(sorgu, baglanti);
komut.Parameters.AddWithValue("@id", textBox1.Text);
komut.Parameters.AddWithValue("@ad", textBox2.Text);
komut.Parameters.AddWithValue("@soyad", textBox3.Text);
komut.Parameters.AddWithValue("@tel", textBox4.Text);
komut.Parameters.AddWithValue("@kurum", textBox5.Text);
komut.Parameters.AddWithValue("@alan", textBox7.Text);
komut.Parameters.AddWithValue("@tarih", textBox6.Text);
baglanti.Open();
komut.ExecuteNonQuery();
baglanti.Close();
KisiGetir();
}
Yorumlar
Yorum Gönder