Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi here is the code I wrote. there is no error at my connection and my database is filled with data which I want to take but I cant get "Urunler.isim" datas I always get "No data exists for the row/column" error message at my sSQL2 code thanks already for your help :) .

class urunadapter
   {
       public void urungetir(string firma , ComboBox cmburun)
       {
           companymodel.cnvt conn = new companymodel.cnvt();
           conn.baglan();
           DataSet dt = new DataSet();

           string sSQL = "SELECT * FROM Firmalar WHERE Firmalar.isim='" + firma + "'";
           OleDbCommand komut = new OleDbCommand(sSQL,conn.baglanti);
           OleDbDataReader oku = komut.ExecuteReader();


           string sSQL2 = "SELECT Urunler.isim FROM Urunler WHERE Firmalar.FirmaID="+oku["FirmaID"]+"";
           komut = new OleDbCommand(sSQL2,conn.baglanti);
           OleDbDataAdapter adp = new OleDbDataAdapter(komut);
           adp.Fill(dt, "Urunler");
           cmburun.Items.Add("Seçiniz");
           cmburun.SelectedIndex = 0;
           foreach (DataRow listele in dt.Tables["Urunler"].Rows)
           {
               string satir = listele[0].ToString();
               bool durum = cmburun.Items.Contains(satir);
               if(!durum)
               {
                   cmburun.Items.Add(satir).ToString();
               }
           }
           conn.bkes();
Posted

1 solution

Since you are using DataReader , The default position of the OledbDataReader is before the first record. Therefore, you must call Read to begin accessing any data.
You should Call
C#
//Call Read method on oku before accessing data.
OleDbDataReader oku = komut.ExecuteReader();
while (oku.Read()) 
{
 // Access record of oku in loop , if you are suppoosed to get zero or more than one record

}            


oku.Read() will return false in case no record exists, so you should always evaluate oku.Read() before accessing any data either using If or While or whatever you like.
 
Share this answer
 
v2
Comments
Manfred Rudolf Bihy 1-Jan-11 12:14pm    
Good call! 5+

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900