Using hypersonic with trace on, I did notice there the exception: "java.sql.SQLException: Connection closed" everytime the a table was created or attempted to be created. This was occuring when con.close() was being executed from org.jboss.ejb.plugins.jaws.jdbc on line 110. For some reason, the SQLException being thrown by the XAClientConnection object was not being caught in the catch statement. Replacing line 110 with
try
{
if (!con.isClosed())
if(con != null) try {con.close(); con = null;}catch(SQLException e)
{}
} catch (Exception e)
{}
fixed this problem. Is this exception you were getting?
By updating configuration settings do you mean mentioning how you would connect to a version 1.6 database also?
David Nordahl
-----Original
Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of Tobias Frech
Sent: Wednesday, June 20, 2001 12:07
PM
To: [EMAIL PROTECTED]
Cc:
[EMAIL PROTECTED]
Subject: Re: [jboss-docs] Guidelines for compliance and
database testing
Hi David!
JBoss comes with Hypersonic preconfigured. But there is a Hypersonic
entry in the manual anyway. The dbtest basically works (for me). But I
saw that the server threw several Exceptions while testing. You could
investigate further if we do have to worry about these Exceptions on the
server. Finally an update of the configuration setting in the manual
would be good.
For further guidelines see:
http://groups.yahoo.com/group/jboss-docs/files/compliance-tasks.txt
Cheers,
Tobias
"Nordahl, David C" wrote:
>
> Hi everybody,
> I would very much like to work on the compliance check for the Hypersonic
> JDBC section.
> David Nordahl
> [EMAIL PROTECTED]
