Re: Postgresql to Delphi

From: Richard Huxton <dev(at)archonet(dot)com>
To: Bob Pawley <rjpawley(at)shaw(dot)ca>
Cc: Postgresql <pgsql-general(at)postgresql(dot)org>
Subject: Re: Postgresql to Delphi
Date: 2007-03-20 20:15:09
Message-ID: 460040CD.9000700@archonet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Bob Pawley wrote:
> Hi
>
> I have posed this question to the Delphi list but they don't appear
> to be able to help.
>
> I am attempting to have the information in a PostgreSQL database
> table trigger a function in Delphi.

Not sure what the Delphi stuff was on about - not my field. You've
basically got three options for triggering events though:
1. Poll from the client app
2. LISTEN/NOTIFY
3. Some privileged procedural function that writes to a file or sends a
packet etc.

Polling is inefficient, and doesn't sound responsive enough for you.
LISTEN/NOTIFY might be the best bet if your drivers can support it.

--
Richard Huxton
Archonet Ltd

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Angva 2007-03-20 20:21:28 multi-row check constraints?
Previous Message Andrej Ricnik-Bay 2007-03-20 20:13:23 Re: Postgresql to Delphi