Re: PL/pgSQL equivalent to PQtransactionStatus? - Mailing list pgsql-general

From Richard Huxton
Subject Re: PL/pgSQL equivalent to PQtransactionStatus?
Date
Msg-id 48920090.1030105@archonet.com
Whole thread Raw
In response to PL/pgSQL equivalent to PQtransactionStatus?  (Christophe <xof@thebuild.com>)
Responses Re: PL/pgSQL equivalent to PQtransactionStatus?
List pgsql-general
Christophe wrote:
> My apologies if this is in the docs and I missed it, but is there a
> PL/pgSQL function equivalent for the pglib function PQtransactionStatus
> (i.e., a way to find out if we're in an open transaction block, and if
> that transaction is in an error status)?

A pl/pgsql function *always* executes within a transaction.

If an error occurs while that function is executing you can catch the
exception (see the "Trapping Errors" section of the pl/pgsql docs).

If an error occurs before the function executes then no other statements
will be executed.

HTH

--
   Richard Huxton
   Archonet Ltd

pgsql-general by date:

Previous
From: "Francisco Reyes"
Date:
Subject: Re: Partitioned tables and views
Next
From: David R Robison
Date:
Subject: Re: Doing an LDAP lookup from a SQL SELECT