check_foriegn_key TO FOREIGN KEY. - Mailing list pgsql-novice

From Luke Tudor - RSG
Subject check_foriegn_key TO FOREIGN KEY.
Date
Msg-id 3AB5E314.30B26A74@unixmail.npm.ac.uk
Whole thread Raw
List pgsql-novice
Dear Postgres Team,

I am still working away at fixing my database. I have decided to drop of
out of date check_foriegn_key function, and
move to the new FOREIGN KEY.

I am having a little trouble converting triggers to make use of the new
function, and wondered if someone could give me an example.

Taking the trigger;

CREATE TRIGGER check_user
BEFORE DELETE ON genUser
   FOR EACH ROW EXECUTE PROCEDURE
   check_foriegn_key(1,'cascade','userid','webuser','userid');

how would I correct it to make use of the new Foreign Key function?

I understand that this may be a simple question, but converting a non
backedup database when still learning Sql can be a scary thing!!!

Any help appreciated.

Best Regards,
Luke.

pgsql-novice by date:

Previous
From: Vijay Deval
Date:
Subject: Re: Help with a query, please
Next
From: Mike Friesen
Date:
Subject: General Cursors Question