Re: [PERFORM] Autocommit in libpq

2007-03-13 Thread Tom Lane
"Dengler, Michael" <[EMAIL PROTECTED]> writes: > Thanks for the reply. Your advice to upgrade sounds urgent. Are there > critical reasons I need to go to 7.4.16? Read the release notes between 7.4.1 and 7.4.16 and judge for yourself: http://developer.postgresql.org/pgdocs/postgres/release.html

Re: [PERFORM] Autocommit in libpq

2007-03-13 Thread Dengler, Michael
@postgresql.org Subject: Re: [PERFORM] Autocommit in libpq Heikki Linnakangas wrote: > Dengler, Michael wrote: >> Please forgive me if I missed something (I have been searching for a >> definitive answer for this for 2 days). >> >> Is there any way to disable autocommit in

Re: [PERFORM] Autocommit in libpq

2007-03-13 Thread Joshua D. Drake
Heikki Linnakangas wrote: > Dengler, Michael wrote: >> Please forgive me if I missed something (I have been searching for a >> definitive answer for this for 2 days). >> >> Is there any way to disable autocommit in libpq? (PG 7.4.1) > > Just call BEGIN to start a transaction, and COMMIT to commit

Re: [PERFORM] Autocommit in libpq

2007-03-13 Thread Heikki Linnakangas
Dengler, Michael wrote: Please forgive me if I missed something (I have been searching for a definitive answer for this for 2 days). Is there any way to disable autocommit in libpq? (PG 7.4.1) Just call BEGIN to start a transaction, and COMMIT to commit it. Other than that, no. -- Heikki

[PERFORM] Autocommit in libpq

2007-03-13 Thread Dengler, Michael
Hi, Please forgive me if I missed something (I have been searching for a definitive answer for this for 2 days). Is there any way to disable autocommit in libpq? (PG 7.4.1) Thanks Mike