Related to Datatable
Why we pass object of Dataset into Datatable
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Sep 30, 2011, 5:53 AM
A DataSet is essentially a collection of DataTables and the relations between them.
The idea is to represent a relational database by a set of objects within memory.
Each DataTable object therefore corresponds to a table within the database and a DataSet object corresponds to the database as a whole.
Notice though that the DataSet and DataTables only provide a snapshot of the database at the moment when they were filled.
Javeed M ShaikhPosted Sep 30, 2011, 12:10 AM