Record has been updated by another user. Re-query to see change [message #637819] |
Tue, 26 May 2015 07:32 |
|
tofajjalhnipu66@gmail.com
Messages: 18 Registered: May 2015 Location: Chittagong,Bangladesh
|
Junior Member |
|
|
hi,
in my form every thing is working good..
when i update or delete some thing then press save button the display item show me how many row is updated.
but when i insert new record then press save button this error displayed "Record has been updated by another user. Re-query to see change" ..
please help me how to solve it ?
Regards
|
|
|
|
|
|
|
|
|
|
Re: Record has been updated by another user. Re-query to see change [message #637840 is a reply to message #637839] |
Wed, 27 May 2015 02:47 |
cookiemonster
Messages: 13963 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
I can't modify the fmb - I haven't got a working forms installation.
From memory the normal causes of this error are:
1) A DB trigger modifies the data as it's being inserted/updated - a before insert/update row trigger - setting block property DML Return to Yes will fix this.
2) Having a post-insert or post-update trigger that modifies the contents of the datablocks.
3) Having some code anywhere that does a direct update on the database rows that are in the datablocks.
To fix 2 and 3 you need to redesign the form so that you're not doing the action that causes the error.
|
|
|