What is the difference between Dataset and DataReader? Can
u breif me ADO.net classes and architecture
Answers were Sorted based on User's Feedback
Answer / manikanta.srinu
Dataset:1)It is a disconnceted architecture why because
once you fill data in dataset,it'll keep data in it even DB
conncetion was closed.and also no need write code for open
& close database connection.
2)It contain collection of datatables.It can be Add,Edit
and modify at runtime.This property is called Read and
write.
DataReader:
1)It is a Connceted architecture why because we have open
connection to get data from DB.
2)It is Forwarad only.This is only for Reading data from DB.
Diffrence:
==========
DataReader is faster than Dataset,because this is read only.
ADO.net classes
===============
System.data is importent class for ADO.Net.It have
collection of class like Dataset,DataReader.etc...
System.Data.SqlClient;
This is for used making SQL connetion,Command.etc..
Architecture
============
SQLDataProvider is contain DataAdpter.This is used to
retive data from DB and then fill dataset to client.and
also It can do Add,Edit and modify operation on DB.
| Is This Answer Correct ? | 16 Yes | 1 No |
Answer / md irshad
1-data set like a container.it's follow the disconnected
architecture while data reader follow connected architecture.
2-data reader provide forward only and read only access to
data while data set object can hold more than one table from
the same data source.
| Is This Answer Correct ? | 1 Yes | 0 No |
Explain difference between panel and groupbox classes using .net?
If we want to write a Windows service that cannot be paused, only started and stopped. How to accomplish that?
What is the concept of inheritance and how it works in .net?
what is yield keyword in .Net?
How to get the hostname or IP address of the server?
Difference between value type & reference types ?
What is the difference between asp.net & vb.net and explain architecture?
Is do-it (chennai) a good institute to learn dot-net???? are the trainers well experienced??
What is misl?
How to implement getcommon method in class a? Are you seeing any problem in the implementation?
Can you write a class without specifying namespace?
Difference between Debugging and tracing in .net