|
ben c# ta access baglantısı ile arama yaptırıyoprum peki bu isme ait büssürü ürün varsa bunları nasıl listelerim
baglan.Open();
veri = new OleDbCommand("select urun,model,adet,boyut,aciklama from ogrenci where 'urun='" + urun + ";", baglan);
oku = veri.ExecuteReader();
while (oku.Read())
{
comboBox1.Text = oku["urun"].ToString();
textBox1.Text = oku["model"].ToString();
textBox2.Text =
|