From: | "Sri" <asrinivas(at)effigent(dot)net> |
---|---|
To: | <pgsql-general(at)postgresql(dot)org> |
Subject: | Problem using start transaction in nested transactions. |
Date: | 2005-10-17 07:10:01 |
Message-ID: | 0F07ABD52EB04625BDE07BFE4AE19455@effigent.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Hi All,
I have a small problem in using nested transactions while working on Postgres 8.0.
Ex: I have a function A() which in turn calls functions b() and c() , if i want commit something in b or c. i have to use
start transaction read write;
-- set of sql statements and then say commit.
commit;
but this is not working it is showing the the following error near start transaction read write
" ERROR: SPI_execute_plan failed executing query "start transaction read write": SPI_ERROR_TRANSACTION ";
or
if i use only commit with out the start transaction command it throwing the runtime error
as
" ERROR: SPI_execute_plan failed executing query "commit": SPI_ERROR_TRANSACTION ";
Can any one send me an example of how to use the start transaction or how to commit an nested transaction.
Thanks in advance.
Thanks & Regards,
Sri
From | Date | Subject | |
---|---|---|---|
Next Message | Paul Newman | 2005-10-17 08:03:17 | What to use for GUIDS ? |
Previous Message | Thomas Beutin | 2005-10-17 06:40:20 | Re: Safe to kill idle connections? |