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


Please Help Members By Posting Answers For Below Questions

Explain the difference between ado and ado.net?

508


What are the benefits of ADO.NET?

612


How would you connect to a database by using .NET?

483


Why do we need ado.net?

547


What are the Data providers in ADO.Net?

555






How can we serialize the dataset object?

565


Explain all the classes those are used for database connections between sql server and asp.net?

509


How to generate a single aggregate?

544


Difference between sqlcommand and sqlcommandbuilder?

588


What is an ADO.Net?

566


What is disconnected architecture in ado.net?

506


Explain how to bind the controls(best practice) comboboxes to the data in the dataset?

560


How to add a check box or a dropdown list to a column in a datagrid?

539


Explain how to copy the contents from one table to another table and how to delete the source table in ado.net?

460


What is the difference between Dataset. clone and Dataset.copy?

561