G
George Potemkin
Guest
> What are you expecting to UNDO? I would expect that a transaction block commits the changes. > In which way, would the code behave any different with/without those TRANSACTION blocks? For example: DEFINE TEMP-TABLE tt FIELD f1 AS INTEGER INITIAL 0 FIELD f2 AS INTEGER INITIAL 0 INDEX f1 f1 INDEX f2 f2. /*DO TRANSACTION:*/ CREATE tt. ASSIGN tt.f1 = 1. /*END.*/ MESSAGE CAN-FIND(FIRST tt WHERE tt.f2 EQ 0) VIEW-AS ALERT-BOX INFO BUTTONS OK.
Continue reading...
Continue reading...