Explain DataSet Object
Dataset is a disconnected, in-memory representation of data. It can contain multiple data table from different database.
They contain multiple Datatable objects, which contain columns and rows, just like normal data base tables. You can even define relations between tables to create parent-child relationships.
Example
DataSet dsEmp = new DataSet();
For more understanding look for DataAdapter Object
No comments:
Post a Comment