0

Using ASP.NET (WebForm), how do I avoid MS Access to lock when more than one user trying to access it at same time? I know MS Access is not optimal for for that purpose but whats the way around it? I assume I've to make some sort of queue, but how?

1

1 Answer 1

1

MS Access is definitely not optimal for that.

Not sure what you´re trying to do exactly but MS Access is locking a file if its opened multiple times from different users. You´d need to make sure that the system user accessing the file is always the same (eg your IIS User maybe) or write a small wrapper that handles the access.

You´d still be only able to do one request at a time so yes you´d need a queue to make that work.

However i´d strongly suggest using SQL for that, maybe try SQL Express as its free and its way easier to use on top.

Sign up to request clarification or add additional context in comments.

1 Comment

I'm aware of that. Do you know any good guide/tutorial for making a queue for this purpose?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.