What exactly do I have to do to make a concurrency exceptin happen in a stored procedure?
I have Store Procedures here with Transactions using. Some of them raise a Concurrency Exception. When should that happen? I sit here before a client-server app with MS SQL Server 2005.
What I mean is, 开发者_开发技巧what exactly must a user(s) do that such an exception can occur?
Update the same datarow in a table?
What exactly?
From MSDN:
Concurrency exceptions [...] are raised when two users attempt to change the same data in a database at the same time.
精彩评论