View Single Post

   
  #3 (permalink)  
Old 04-16-2008, 01:00 AM
Michael Paesold
 
Posts: n/a
Default Re: Behaviour of setAutoCommit may not be completely correct.

Markus Schaber write:
> Joćo Paulo Ribeiro wrote:
>
> > From the specs: "If the value of auto-commit is changed in the middle
> > of a transaction, the current transaction is committed."
> >
> > The postgresql have a problem with setAutocommit(...): if the value
> > passed (false or true) is the same that was previously set, it just
> > does nothing.

>
> I don't see this as bug, acutally setting the value to the same it had
> previously is not "changing", strictly seen.


The latest javadoc of the Connection interface at
http://java.sun.com/j2se/1.5.0/docs/...Commit(boolean)
has (same for 1.5.0 and 1.4.2):

setAutoCommit:
....
"NOTE: If this method is called during a transaction, the transaction is
committed."

This sentence is completely unambigously stating that calling the method
will commit a running transaction. If the postgresql jdbc driver is in
violation of this, it should be fixed. Otherwise it will break applications
that are written based on the specified semantics.

Best Regards,
Michael Paesold



---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

Reply With Quote