CONCURRENCY ERROR

  • Thread starter Thread starter RAW
  • Start date Start date
R

RAW

When I try to make an update to a sql server my aplicaction make a
concurrency error I DONT have Idea why this happen

thid some body have this problem in the past and how it resolve it
 
Hi RAW,
Because you did not get an answer, maybe sending a piece of code will give
some information to someone who will help you.
Cor
 
RAW said:
When I try to make an update to a sql server my aplicaction make a
concurrency error I DONT have Idea why this happen

thid some body have this problem in the past and how it resolve it

I just recently ran into this problem myself.
I fixed it by changing the UPDATE command so that it only used the primary
key to find the row to update.

psuedocode:

UPDATE table_name SET value=?, value=?, value=?, .... , WHERE (primarykey=
?)
 
Back
Top