Re: ECPG - Clarfication of '-t', 'autocommit', BEGIN? - Mailing list pgsql-interfaces

From Michael Meskes
Subject Re: ECPG - Clarfication of '-t', 'autocommit', BEGIN?
Date
Msg-id 20020927112658.GA8723@feivel.credativ.de
Whole thread Raw
In response to ECPG - Clarfication of '-t', 'autocommit', BEGIN?  ("William West" <wwest@csc.com>)
List pgsql-interfaces
On Thu, Sep 26, 2002 at 01:57:40PM -0400, William West wrote:
> The ecpg man page says that '-t' will turn autocommit 'on', that
> the default is that otherwise a 'commit' statement is needed to
> cause a 'commit'.
> ...

Which indeed is correct. "Autocommit" means that the mode is the same as
with for instance psql. Each statement is run inside its own transaction
and thus you do only need a "commit" if you specified a "begin" before.

Without "autocommit" the mode is equivalent to Oracle in that an
explicit transaction is started automatically and all you need to do is
issue a "commit" or "rollback" to end. After that a new transaction is
started immediately.

> Am I wrong in thinking that BEGIN-(set of commands)
> -COMMIT should be equivalent to 'start transaction
> -perform sequence of commands-commit result of
> sequence of commands'? Or does BEGIN become
> superfluous when running *without* -t? Could someone
> please clarify?

Yes, that's it. No need to say "begin" when not using "-t".

Michael
-- 
Michael Meskes
Michael@Fam-Meskes.De
Go SF 49ers! Go Rhein Fire!
Use Debian GNU/Linux! Use PostgreSQL!


pgsql-interfaces by date:

Previous
From: "William West"
Date:
Subject: ECPG - Clarfication of '-t', 'autocommit', BEGIN?
Next
From: "Paul"
Date:
Subject: Is there Pg PPM module (perl, win32) ?