What is the difference between Dataset and Recordset?
Answer Posted / vinayak
? A DataSet can represent an entire relational database in
memory, complete with tables, relations, and views.
? A DataSet is designed to work without any continuing
connection to the original data source.
? Data in a DataSet is bulk-loaded, rather than being
loaded on demand.
? There's no concept of cursor types in a DataSet.
? DataSets have no current record pointer You can use For
Each loops to move through the data.
? You can store many edits in a DataSet, and write them to
the original data source in a single operation.
? Though the DataSet is universal, other objects in
ADO.NET come in different versions for different data
sources.
| Is This Answer Correct ? | 27 Yes | 15 No |
Post New Answer View All Answers
What is private assembly?
i have two class that contain's two methods as same name in derived class i have to call these two methods what will happen at run time ?
Explain the services provided by common language infrastructure.
What are the types of generations in garbage collector?
What are the advantages of VB.NET?
Write the role of new keyword?
What is redim keyword and its use?
Define cls?
what is commom language runtime?
Explain convert.tostrin?
Explain the use of new keyword?
How do you define a read only property in a class module?
Why do we use ansi keyword?
What are the shadow variables?
What does assert() method do In VB.NET