Capturing the result status of an ALTER command in plpgsql - Mailing list pgsql-novice

From jarednevans@yahoo.com
Subject Capturing the result status of an ALTER command in plpgsql
Date
Msg-id cfte1h$6m8@odah37.prod.google.com
Whole thread Raw
List pgsql-novice
How does one capture the result status of an ALTER command inside
plpgsql code block?

For example:

-----------------
CREATE OR REPLACE FUNCTION public."Setup_Primary_Keys"()
RETURNS SETOF varchar AS
'DECLARE

BEGIN

ALTER TABLE public."HCM00101"  ADD CONSTRAINT "hcm00101-pk" PRIMARY
KEY("CUSTNMBR");
-- Capture Success or Failure here of the ALTER command
IF [how do I determine success here?] THEN
return next \'HCM00101 primary key set\';
ELSE [eat the failure exception here and continue]
return next \'HCM00101 primary key was not set, continuing with more
code below\';
END IF;

....... more code ........
return;

END;'
  LANGUAGE 'plpgsql' VOLATILE;
-------------------


pgsql-novice by date:

Previous
From: the inquirer
Date:
Subject: Authentication problems
Next
From: jarednevans@yahoo.com
Date:
Subject: return set different in psql and MS Access/ODBC