Jump to content

connect MS access DB oleDB problem

- - - - -

  • Please log in to reply
No replies to this topic

#1
scottmcg

scottmcg

    Newbie

  • Members
  • Pip
  • 1 posts
Hi again, I'm having trouble whilst connecting a MS access db using oleDB

Problem is with getting more than one column added into a listbox in my application from the DB
here's the code so far


OleDbConnection Conn = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Users\\Scott\\Documents\\Menu.accdb");

OleDbDataAdapter da = new OleDbDataAdapter(
"Select * from Menu", Conn);

DataSet ds = new DataSet();
da.Fill(ds);
DataTable dt = ds.Tables[0];

foreach (DataRow dr in dt.Rows)
{
listBox1.Items.Add(dr["Dish"]);
}
}

I just can't find a way to get the second column added ?

thanks,Scott




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users