private void btnEKLE_Click(object sender, EventArgs e)
{
baglanti.Open();
string sorgu = "INSERT INTO Eleman (Ad,Soyad,Telefon,Not,Borc) VALUES ('@ad','@soyad','@telefon','@not','@borc')";
komut = new OleDbCommand(sorgu, baglanti);
komut.Parameters.Add("@ad", OleDbType.VarWChar).Value = textAd.Text;
komut.Parameters.Add("@soyad", OleDbType.VarWChar).Value = textSoyad.Text;
komut.Parameters.Add("@telefon", OleDbType.VarWChar).Value = textTelNO.Text;
komut.Parameters.Add("@not", OleDbType.VarWChar).Value = textNot.Text;
komut.Parameters.Add("@borc",OleDbType.Integer).Value = Convert.ToInt32(textBorç.Text);
komut.ExecuteNonQuery();
baglanti.Close();
KisiListele();
}