Subject | Re: [IBO] After a fail transaction |
---|---|
Author | Nando Dessena |
Post date | 2004-06-12T06:23:11Z |
James,
J> Just want to know if there are things to do after committing a
J> transaction which result to a failure due to some exception raise.
I'm not sure I got the question right, but here is a pretty common
usage pattern for transactions:
starttransaction;
try
// do things
commit;
except
rollback;
raise;
end;
Ciao
--
Nando Dessena
mailto:nandod@...
J> Just want to know if there are things to do after committing a
J> transaction which result to a failure due to some exception raise.
I'm not sure I got the question right, but here is a pretty common
usage pattern for transactions:
starttransaction;
try
// do things
commit;
except
rollback;
raise;
end;
Ciao
--
Nando Dessena
mailto:nandod@...