string sql = "select * from tb_Room";//查询所有记录,返回字段。
adapter = new SqlDataAdapter(sql, conn);//答:DataAdapter对象在DataSet与数据之间起桥梁作用
if (this.dr.Tables["tb_Room"] != null)
{
this.dr.Tables["tb_Room"].Clear();
}
adapter.Fill(this.dr, "tb_Room");
原文地址:http://www.cnblogs.com/yangshun/p/3924371.html