数据集与表适配器
本文关键字:适配器 数据集 | 更新日期: 2023-09-27 18:28:08
有人能用有趣的例子解释一下数据集和表适配器之间的区别吗。
表适配器如何从sql server获取数据?
使用DataAdapter
用SqlServer中的数据填充DataSet
。
SqlConnection conn = new SqlConnection(connString);
SqlCommand cmd = new SqlCommand("SELECT * FROM tbl_tblname", conn);
try
{
conn.Open();
DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand = cmd; // Set the select command for the DataAdapter
da.Fill(ds); // Fill the DataSet with the DataAdapter
DataGridView1.DataSource = ds.Tables[0]; // I just displayed the results in a grid view for simplicity. If Asp.Net you will have to call a DataBind of course.
catch (Exception ex)
{
conn.Close();
conn.Dispose();
}