On Sun, Oct 11, 2009 at 8:41 PM, Bill Todd <[email protected]> wrote: > Does PostgreSQL support nested transactions as shown below? > > BEGIN; > ...do some stuff... > BEGIN; > ...more stuff... > COMMIT; > COMMIT;
Postgresql uses savepoints. -- Sent via pgsql-general mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general
