Differance between Dataset and Datareader
Dataset
1) Read/write access to data.
2) Disconnected architecture.
3) Include multiple table from different database.
4) Bind to multiple controls.
5) forward and backward scanning of data.
6) supported by visual studio .net tool.
7) you can set relation between tables.
DataReader
1) Read only
2) Connected architecture.
3) Include 1 table from 1 database only.
4) Bind to one control only.
5) fast forward only.
6) Manually coded.
7) No relations.
Comments
Post a Comment