Thread: how to rollback transactions in a function?

how to rollback transactions in a function?

From
"V R"
Date:
Hi,
   I  have written a parent function, which inturn, calls 2-3 child functions  that
eitherinsert or update rows in  tables .The problem I face is when one of these child functions fail to
update or insert and return False.So in this scenario how do I rolback the transactions made by the earlier
childfunctions ? Any feedback regarding this will be helpful. 
 
Thanks
RadhaSend and receive Hotmail on your mobile device: Click Here

Re: how to rollback transactions in a function?

From
"PGMailList"
Date:
To rollback the transaction
either call
 
if NOT (YourFunctionThatReturnsBool) then
ROLLBACK;
 
or
raise exception ''you error here'';
 
PostgreSQL GUI
 
 
----- Original Message -----
From: V R
Sent: Tuesday, April 02, 2002 10:49 AM
Subject: [NOVICE] how to rollback transactions in a function?

Hi,
   I  have written a parent function, which inturn, calls 2-3 child functions  that either insert or update rows in  tables .The problem I face is when one of these child functions fail to update or  insert and return False.So in this scenario how do I rolback the transactions made by the earlier child functions ? Any feedback regarding this will be helpful.
 
Thanks
Radha


Send and receive Hotmail on your mobile device: Click Here