Solved | Current version of data in database has changed since user initiated update process ERROR.

Fix by ..

In your query, DO NOT ALIAS any of the update-able columns by using “as” (like .. select emp_name as Name from t_emp),
But remove as keyword from your code like .. ( select emp_name Name from t_emp )

Or else you will get this Error.  I hope this helps. 🙂

You may also like...