How do you handle data concurrency in .NET ?
Answer Posted / swapna
One of the key features of the ADO.NET DataSet is that it
can be a self-contained and disconnected data store. It can
contain the schema and data from several rowsets in
DataTable objects as well as information about how to
relate the DataTable objects-all in memory.
The DataSet neither knows nor cares where the data came
from, nor does it need a link to an underlying data source.
Because it is data source agnostic you can pass the DataSet
around networks or even serialize it to XML and pass it
across the Internet without losing any of its features.
However, in a disconnected model, concurrency obviously
becomes a much bigger problem than it is in a connected
model.
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
Which name space is used to get assembly details?
What is ado.net in vb net?
What are all the commands used with Data Adapter?
Does ado.net use odbc?
What is the difference between Response.Expires and Reponse.ExpiresAbsolute?
How will you fill the gridview by using datatable object at runtime?
Explain advantages of ado.net?
What is a dynaset in access?
What are the benefits of ADO.NET?
Explain all the classes those are used for database connections between sql server and asp.net?
What is the difference between ado.net and oledb?
What is acid in ado.net?
What is microsoft ole db provider for sql server?
How to retrieve the user id which is provided while windows authentication?
Which object of ado contains datarow datacolumn collection?