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=
?)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top