Re: Nested transactions - Mailing list pgsql-general

From Scott Marlowe
Subject Re: Nested transactions
Date
Msg-id dcc563d10910111945n1ee94e2es5748f9d033367b7f@mail.gmail.com
Whole thread Raw
In response to Nested transactions  (Bill Todd <pg@dbginc.com>)
Responses Re: Nested transactions
List pgsql-general
On Sun, Oct 11, 2009 at 8:41 PM, Bill Todd <pg@dbginc.com> wrote:
> Does PostgreSQL support nested transactions as shown below?
>
> BEGIN;
>  ...do some stuff...
>  BEGIN;
>   ...more stuff...
>  COMMIT;
> COMMIT;

Postgresql uses savepoints.

pgsql-general by date:

Previous
From: Bill Todd
Date:
Subject: Nested transactions
Next
From: John R Pierce
Date:
Subject: Re: Nested transactions