Re: [GENERAL] pgplsql and notifications

2006-02-19 Thread Tom Lane
=?ISO-8859-1?Q?Ken=E9z_Attila?= <[EMAIL PROTECTED]> writes: > I would like to implement a function in plpgsql (or sql if it is possible) > that can say me if I had some notification of some listened table. Notifications are delivered to the client (and then promptly forgotten by the backend). The

[GENERAL] pgplsql and notifications

2006-02-19 Thread Kenéz Attila
Hi all, I would like to implement a function in plpgsql (or sql if it is possible) that can say me if I had some notification of some listened table. I mean something like this: create procedure do_i_have_notifications(text) returns boolean as ' ... ' language (plpg)sql; (or: create pro