Ok Frans,
Thank you, I understand now how it works.
So, my problem is with MySQL.
If I do this query on SQL Server, on a table customer with a field UserName, and a row with UserName = 'Walter':
UPDATE Customer SET UserName = 'Walter' WHERE UserName = 'Walter'
I get the following result:
(1 row(s) affected)
Thefore no ORMConcurrencyException, all is fine.
If I do the same on mySql, I get the following result:
0 row(s) affected Rows matched: 1 Changed: 0 Warnings: 0
So I will get the ORMConcurrencyException....
Is it possible to change something or configure or extend Llblgen to avoid having a concurrency exception thrown in this case? We are effectivelly in a scenario where all is fine and no concurrency occured on the database. I would except the ORM to not throw any exception.
Thanks