Re: Postgres: Transaction Connections

From: John R Pierce <pierce(at)hogranch(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Postgres: Transaction Connections
Date: 2009-05-06 05:33:10
Message-ID: 4A012116.7000105@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

CM J wrote:
> Hi ,
>
>
> I use postgres database server 8.2.12 with my java
> application. I was wondering if postgres supports transactions by
> default or do i have to turn some parameter on to enable transaction
> support ?

Postgres supports transactions by default.

Postgres JDBC drivers for Java have two operating modes, autocommit
where every statement is its own transaction, and non-autocommit, where
you have to explicitly commit or rollback to end a transaction.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Thomas Kellerer 2009-05-06 06:41:55 Re: Postgres: Transaction Connections
Previous Message CM J 2009-05-06 04:56:19 Postgres: Transaction Connections