Re: Behaviour of setAutoCommit may not be completely correct.

Поиск
Список
Период
Сортировка
От Michael Paesold
Тема Re: Behaviour of setAutoCommit may not be completely correct.
Дата
Msg-id 023601c654c2$b1146410$7801a8c0@zaphod
обсуждение исходный текст
Ответ на Behaviour of setAutoCommit may not be completely correct.  (João Paulo Ribeiro <jp@mobicomp.com>)
Ответы Re: Behaviour of setAutoCommit may not be completely correct.
Список pgsql-jdbc
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/api/java/sql/Connection.html#setAutoCommit(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



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

Предыдущее
От: Markus Schaber
Дата:
Сообщение: Re: Behaviour of setAutoCommit may not be completely correct.
Следующее
От: Dave Cramer
Дата:
Сообщение: Re: Behaviour of setAutoCommit may not be completely correct.