i use the access and find product but if there is many same product name how can ı list these
please write for access database in c# my normaly codes are below
baglan.Open();
// Sorgu içinde urun isimli bir değişken kullanmışsın ancak değişkene değer atamamışsın. Sorguya null olarak giriyor. Alttaki satırı eklemen lazım
urun = textBox1.Text;
veri = new OleDbCommand("select urun,model,adet,boyut,aciklama from ogrenci where urun='" + urun + "';", baglan);
oku = veri.ExecuteReader();
while (oku.Read())
{
textBox1.Text= oku["urun"].ToString();
textBox2.Text = oku["model"].ToString();
textBox3.Text = oku["adet"].ToString();
textBox4.Text = oku["boyut"].ToString();
textBox5.Text = oku["aciklama"].ToString();
}
oku.Close();
baglan.Close();