Re: jdbc xa patches - Mailing list pgsql-jdbc

From Michael Allman
Subject Re: jdbc xa patches
Date
Msg-id 20050727011008.W74424@yvyyl
Whole thread Raw
In response to Re: jdbc xa patches  (Oliver Jowett <oliver@opencloud.com>)
Responses Re: jdbc xa patches  (Oliver Jowett <oliver@opencloud.com>)
List pgsql-jdbc
On Wed, 27 Jul 2005, Oliver Jowett wrote:

> Michael Allman wrote:
>> On Wed, 27 Jul 2005, Oliver Jowett wrote:
>>
>>> More generally: can we get XAExceptions thrown with useful messages? It
>>> seems like there's no direct constructor that gives you both message and
>>> error code, but the error code is a public field so you can set it after
>>> construction before throwing.
>
>> Since the client of a PGXAResource instance is a transaction manager I see
>> no benefit.  The transaction manager will make a decision on what to do
>> based on the code carried by XAException and carry on.  Maybe it will log a
>> message.
>
> I absolutely disagree with there being no benefit. We should provide as much
> information as possible in the exception. All hhe TM *has* to log is the
> exception we give it, really, so that better have all the information we can
> give about any underlying problems.

In cases where an XAException is thrown due to another exception, say
SQLException, I believe I was consistent in writing the cause exception's
stack trace to the DriverManager's log writer.  I think that covers
logging cause exceptions for the most part.

I'm not really disputing that putting nice string messages in all our
thrown exceptions is bad, just that in this particular use case it's
probably not worth the effort.  (The effort being dealing with the fact
that XAException does not take an error code and string message at once.)

Michael

pgsql-jdbc by date:

Previous
From: Michael Allman
Date:
Subject: Re: jdbc xa patches
Next
From: Oliver Jowett
Date:
Subject: Re: jdbc xa patches