A sample of the difference between a dataset and a DataTable _ Practical tips
Source: Internet
Author: User
DataSet: DataSet. Typically contains multiple DataTable, in which dataset["table name" is used to get the DataTable
DataTable: Data table.
One:
SqlDataAdapter
Da=new
SqlDataAdapter (CMD);
DataTable
Dt=new
DataTable ();
Da. Fill (DT);
-----------------
Put the data directly into the
In a DataTable,
Two:
SqlDataAdapter
Da=new
SqlDataAdapter (CMD);
DataSet
Dt=new
DataSet ();
Da. Fill (DT);
----------------
The data results are placed in the dataset, and to use that DataTable, you can do this: dataset[0]
More common usage:
SqlDataAdapter
Da=new
SqlDataAdapter (CMD);
DataSet
Dt=new
DataSet ();
Da. Fill (DT, "Table1");
When used: This Takes a DataTable:
dataset["Table1"]
Specific applications:
SqlConnection con = new SqlConnection ("server=.; database=stucoursedb1;uid=sa;pwd=xhz; ");
SqlDataAdapter SDA = new SqlDataAdapter ("SELECT * from student", con);
DataSet ds = new DataSet ();
Sda. Fill (ds, "stutable");
This. Gridview1.datasource = ds. tables["Stutable"];
This. Gridview1.databind ();
Ds. Dispose ();
Con. Close ();
Con. Dispose ();
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.