Kod:
private void button1_Click(object sender, EventArgs e)
{
if ((textBox1.Text != "") && (textBox2.Text != "") && (textBox3.Text != ""))
{
baglanti.Open();
string sorgu = "insert into ogrenciler(OkulNo,Ad,Soyad,Resim) values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + pictureBox1 .ImageLocation + "')";
OleDbCommand komut = new OleDbCommand(sorgu, baglanti);
komut.ExecuteNonQuery();
pictureBox1.Image.Save("Resimler/" + textBox1 .Text.ToString () + ".jpg");
baglanti.Close();
TabloyuDoldur();
MessageBox.Show("kayıt eklendi");
}
}