Re: storing transactions

From: kaspro(at)web(dot)de
To: Chris Mair <chrisnospam(at)1006(dot)org>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: storing transactions
Date: 2006-10-06 00:00:05
Message-ID: 540375684@web.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Mabye I made myself not clear enough- sorry for that...
What I want is having a statement like:

PROCEDURE MyProcedure(Value1 int, Value2 text, Value3 varchar(30))
BEGIN
---check if something is valid
---compute something
---store values I got via THIS query and put them in table A, B and C
---see wether everything is ok
COMMIT;

...which I execute from a client like: exec MyProcedure(Value1, Value2, Value3)

Sorry for beeing not exact enough...

Thanks in advance,
Chris

> -----Ursprüngliche Nachricht-----
> Von: Chris Mair <chrisnospam(at)1006(dot)org>
> Gesendet: 05.10.06 18:43:23
> An: kaspro(at)web(dot)de
> CC: pgsql-general(at)postgresql(dot)org
> Betreff: Re: [GENERAL] storing transactions

>
> > I’ve been studying the whole evening and don’t seem to find an answer:
> > I want to “store” transactions on the server- like view’s, or, (sorry) as in M$ SQL Server CREATE OR REPLACE TRANSACTION xyz()........
>
> Of course, it's possible.
> What you need is
> CREATE OR REPLACE FUNCTION xyz() RETURNS trigger AS ...
> then
> CREATE TRIGGER ... EXECUTE PROCEDURE xyz();
>
>
> Look here for an example:
> http://www.postgresql.org/docs/8.1/static/plpgsql-trigger.html
>
> Bye,
> Chris.
>
>

_____________________________________________________________________
Der WEB.DE SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
http://smartsurfer.web.de/?mc=100071&distributionid=000000000066

Browse pgsql-general by date

  From Date Subject
Next Message Bill Moran 2006-10-06 00:41:01 Re: Storing images in PostgreSQL databases (again)
Previous Message Jean-Christophe Roux 2006-10-05 23:54:32 Re: Storing images in PostgreSQL databases (again)