How to set "auto commit" off in postgresql db?

Поиск
Список
Период
Сортировка
От Guang Mei
Тема How to set "auto commit" off in postgresql db?
Дата
Msg-id F1596sKBEr8pkpLkTgb0000ec17@hotmail.com
обсуждение исходный текст
Ответы Re: How to set "auto commit" off in postgresql db?
Список pgsql-general
Hi:
 
It seems to me that postgresql db's default set for commit is "on". I would like to set it to "off". How could I do
that?
 
TIA.
----------
Here is what I got when testing:
 

webstore=> create table t1 (col1 varchar(10));
CREATE
webstore=> insert into t1 (col1) values ('test123');
INSERT 1006769 1
webstore=> select * from t1;
col1
---------
test123
(1 row)
webstore=> rollback;
NOTICE: ROLLBACK: no transaction in progress
ROLLBACK
webstore=> select * from t1;
col1
---------
test123
(1 row)
 
 Get your FREE download of MSN Explorer at http://explorer.msn.com

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

Предыдущее
От: Jan Wieck
Дата:
Сообщение: Re: How to see a RULE definition?
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Re: Loading optimization