Bill Todd wrote:
Does PostgreSQL support nested transactions as shown below?

BEGIN;
 ...do some stuff...
 BEGIN;
   ...more stuff...
 COMMIT;
COMMIT;


no, but in recent versiosn, you can use SAVEPOINT to achieve much the same effect.

http://www.postgresql.org/docs/current/static/sql-savepoint.html



--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to