R
rodchar
hey all,
SqlDataAdapter da = new SqlDataAdapter(@"Select * from Products",
ConfigurationSettings.AppSettings["NorthwindConnectionString"]);
DataTable tbl = new DataTable();
da.Fill(tbl);
Can someone please tell me what I'm missing?
thanks,
rodchar
SqlDataAdapter da = new SqlDataAdapter(@"Select * from Products",
ConfigurationSettings.AppSettings["NorthwindConnectionString"]);
DataTable tbl = new DataTable();
da.Fill(tbl);
Can someone please tell me what I'm missing?
thanks,
rodchar