Difference between ADO.net Dataset , ADO Record Set & ADO Data Reader?
Answer Posted / lovenier
We use DataSet to retrieve data from database in disconnected mode, but in the data RecordSet it retrieve data in connected mode..
DataSet is designed to work without any continuing connection to the orignal database, but RecordSet is Required a connected environment.
Data in DataSet is bulk loaded, rather than being loaded on demand.
DataSet have no concept of Cursor and current pointer, you can use for each loops to move through data.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the concepts of globalization and localization in .net?
What is the difference between session.abandon() vs clear()?
What are the security types in ASP/ASP.NET? Different Authentication modes?
Do gac'ed assemblies have fulltrust?
What are the media types of http requests and response?
What is the difference between client-side and server-side validations in ASP.NET?
What is state management techniques in asp.net?
Why do we need Sessions?
To display data in a Repeater control which template you provide?
How do cookies work? Give an example of their abuse.
Can we add code files of different languages in app_code folder?
Explain the difference between AutoPostBack and IspostBack in ASP.NET?
Define session in asp.net.
How tooltip is set through code-behind in ASP.NET?
Why the javascript validation not run on the asp.net button but run successfully on the html button?