Optimistic concurrency relies on ___________ to detect conflicts.
- Locks
- Row versions
- Timestamps
- Triggers
Optimistic concurrency relies on comparing the original values of data with the current values at the time of update. This is typically achieved by comparing row versions or timestamps to detect if any changes have occurred since the data was initially read. Using row versions or timestamps helps in identifying conflicts without directly locking the data.
Loading...
Related Quiz
- The DataRelation class is used to define relationships between ___________.
- What is the purpose of a data provider in ADO.NET?
- The Repeater control allows developers to create ________ HTML or other markup for each item in a dataset.
- In LINQ, what is the purpose of the select clause in a query?
- The Entity Framework ___________ feature allows you to specify how entity classes are mapped to database tables.