From: | Ludwig Lim <lud_nowhere_man(at)yahoo(dot)com> |
---|---|
To: | PostgreSQL Mailing List <pgsql-sql(at)postgresql(dot)org> |
Subject: | A PL/PgSQL Question |
Date: | 2002-12-13 17:50:23 |
Message-ID: | 20021213175023.75148.qmail@web80302.mail.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Hi:
I have the following PL/PgSQL code blocks:
a) IF (condition) THEN
RAISE EXCEPTION ''Cannot Insert'';
END IF;
b) IF (condition) THEN
RAISE NOTICE ''Cannot Insert'';
RETURN NULL;
END IF;
What is the difference between the first and second
chunk PL/PgSQL INSERT/UPDATE trigger function code
aside from the fact that first scenario will result in
an "ABORT" state?
Are there any instances where a NOTICE and a RETURN
NULL statement is a much better than a RAISE EXCEPTION
statement?
Thank you very much,
ludwig lim
__________________________________________________
Do you Yahoo!?
New DSL Internet Access from SBC & Yahoo!
http://sbc.yahoo.com
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2002-12-13 18:12:05 | Re: server terminated by a query in 7.3 |
Previous Message | Frank van Vugt | 2002-12-13 17:47:39 | Re: server terminated by a query in 7.3 |