Urgent: How to set autocommit off in postgres.........

Поиск
Список
Период
Сортировка
От Advid@newgen
Тема Urgent: How to set autocommit off in postgres.........
Дата
Msg-id 001201c13d00$cd84c790$6705a8c0@advid
обсуждение исходный текст
Список pgsql-sql
Hi ,

I read one of solution to andreas problem of how to set autocommit off but
my problem  still persists. I am basically writing a function in plpgsql
language which performs a number of update and insert statements  but on a
failing condition it rollbacks inorder to maintain integrity in the
database. I have tried using the following code :

create function abc() returns char as'
begin
....
begin work;   insert into mytable values(1);   // pseudo code   if (conditions fails) then     rollback work;
end work;
...
..
end;
' language 'plpgsql';

But this code fails miserably by not executing without errors since
autocommit is on.Moreover I could not find  ~/.psqlrc (or /etc/psqlrc).
I am using Red Hat Linux 7.1 and Postgres 7.1.2. I  badly in need of help as
my deadline closes by to submit my project. Hope u would consider this as
SOS call from ur friend.

Waiting in anticipation of early reply,

Regards,
Advid Parmar
New Delhi, India



В списке pgsql-sql по дате отправления:

Предыдущее
От: Nils Zonneveld
Дата:
Сообщение: Re: Combine query views into one SQL string
Следующее
От: Nils Zonneveld
Дата:
Сообщение: Re: Combine query views into one SQL string