Re: Nested transactions

From: Scott Marlowe <scott(dot)marlowe(at)gmail(dot)com>
To: Bill Todd <pg(at)dbginc(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Nested transactions
Date: 2009-10-12 02:45:01
Message-ID: dcc563d10910111945n1ee94e2es5748f9d033367b7f@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sun, Oct 11, 2009 at 8:41 PM, Bill Todd <pg(at)dbginc(dot)com> wrote:
> Does PostgreSQL support nested transactions as shown below?
>
> BEGIN;
>  ...do some stuff...
>  BEGIN;
>   ...more stuff...
>  COMMIT;
> COMMIT;

Postgresql uses savepoints.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message John R Pierce 2009-10-12 02:50:22 Re: Nested transactions
Previous Message Bill Todd 2009-10-12 02:41:54 Nested transactions