Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6339701
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T19:41:48+00:00 2026-05-24T19:41:48+00:00

There’s an application that is mostly about accessing the database. For the moment, it

  • 0

There’s an application that is mostly about accessing the database. For the moment, it only allows single user access and I need to make it support multiple concurrent users. The problem is, there’s no way to explicitly separate resources between these users, all the resources must be shared: so, 10 users may have the resource open and then 1 can modify that resource.

Are there any frameworks, libraries or at least best practices for solving this problem? It’s likely to be quite popular problem, so I believe there should be any of these.

Update:
By “resources” I mostly mean the data in database.

Update:
To be more specific, it’s all about the case when you have a master-details dependency between 2 entities, one user opens it for removing some details and other users opens it to add and modify something. The first one removes the part of data, that the second one was about to modify. And then it happens.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T19:41:48+00:00Added an answer on May 24, 2026 at 7:41 pm

    You can use optimistic locking when updating a row. One way to do this is to add a Version column in all your tables. This could just be an integer. Basically when you first query a row, you get the initial value of the Version column. Then when updating the row, you put the initial Version in the where clause and then also update the Version along with the other fields.

    UPDATE Product 
    SET Version = 2 /* The incremented version */,        
    Name = 'UpdatedName',
    Description = 'UpdatedDescription'
    WHERE  Id = 'SomeUniqueIdXXXX'
    AND Version = 1 /* The initial version */
    

    The first update will succeed and the next updates to the same row will fail if they used the stale Version. Your app should be able to handle the failure and proceed the way you want (e.g. display an error message, etc.). If you don’t want to modify all your tables to include a Version column, you can use the next technique. Basically, you put all the original values as part of your where clause:

    UPDATE 
    Product 
    SET Name = 'UpdatedName'
    WHERE Id = 'SomeUniqueIdXXXX'
    AND Name = 'OriginalName'
    AND Description = 'OriginalDescription'
    

    If you are using NHibernate, these techniques can be automatically done for you depending on how you set your mappings.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There are many tutorials that talk about deleting index.php from the url. But I
There's a few previous questions on StackOverflow questioning how one goes about accessing local
There is a conversion process that is needed when migrating Visual Studio 2005 web
There is a field in my company's Contacts table. In that table, there is
There's a thrird party app that needs to get information via custom http headers,
There's a column on one of my tables that's being updated by various INSERT/DELETE
There can only be one IDENTITY column per table Why is it so? Take
There are a lot of example implementations of daemons on the net. Most that
There are some Magento Connect extensions that I find myself installing every time I
There are are 150 000 records in my comments table and about 1000 new

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.