3
Reply

Compare Data Reader & Dataset in ado.net?

Kanika Mehra

Kanika Mehra

14y
2.5k
0
Reply

    Hello @ bad time simulator, the term "RED DOG FRONT END" can mean different things depending on the software or industry you're referring to. In general, a front end is the user-facing part of a software application—the screens, menus, buttons, and forms that users interact with directly. The front end communicates with the back-end systems that handle the actual processing and data storage. If Red Dog Front End is the name of a specific application used in your workplace (such as a point-of-sale system, hospitality software, gaming system, or business application), I would need more context to identify it accurately.

    Datareader:- DataReader provides forward-only and read-only access to data. - Datareader is connected architecture - Datareader can not persist data.Dataset:1. Disconnected. 2. Can traverse data in any order front, back. 3. Data can be manipulated within the dataset. 4. More expensive than datareader as it stores multiple rows at the same time.
    Following are some major differences between dataset and datareader :- 1) DataReader provides forward-only and read-only access to data, while the DataSet object can hold more than one table (in other words more than one rowset) from the same data source as well as the relationships between them. 2)Dataset is a disconnected architecture while datareader is connected architecture. 3)Dataset can persist