Options

About MODIFY/COMMIT

poppinspoppins Member Posts: 647
Hi everyone,

I have the following code:
IF ValueEntry.FINDSET THEN BEGIN
REPEAT
....
....
ValueEntry.MODIFY;
UNTIL (ValueEntry.NEXT=0);
END;

If something goes wrong in the execution, does it rollback? I mean, do I loose the update on entries that were modified before the error?
Do I need to add a COMMIT to make sure it is saved for good?
Thanks in advance :)

Best Answers

Answers

Sign In or Register to comment.