fegdvbna22
Programmer
Sorry if this is a newbie question, but how do you write a dataset to a table?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter();
da.Fill(ds);
DataTable dtCust = new DataTable("Customer");
DataTable dtEmp = new DataTable("Employee");
dtCust = ds.Tables["Customer"];
dtEmp = ds.Tables["Employee"];