Kbase P100335: How to force an entire .p to be a transaction?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  1/24/2005 |
|
Status: Unverified
GOAL:
How to force an entire .p to be a transaction?
FIX:
If you have a .p within which there are several transaction blocks which you want to be able to undo as a single block then wrap the RUN of the .p with a DO TRANSACTION block. For example,
DO TRANSACTION:
RUN SomeProgramWithMultipleSeparateTransactionBlocks.p.
END.