How to add an Interbase connection pool to glassfish?
Posted
by kgrad
on Stack Overflow
See other posts from Stack Overflow
or by kgrad
Published on 2010-03-07T18:37:31Z
Indexed on
2010/03/14
14:45 UTC
Read the original article
Hit count: 463
Hi,
I am attempting to add an Interbase connection pool to GlassFish v3 to use EJB 3.1 in a project. The glassfish log appears to be connecting to my database properly, it spits out all my table names and indices. However, I get an error
INFO: fetching database metadata
SEVERE: could not complete schema update
java.lang.NullPointerException
at interbase.interclient.ResultSet.local_Close(Unknown Source)
...
And when I ping the connection pool from within Glassfish I receive "Ping failed Exception - null".
I have the following properties set with my connectionpool:
resource type: javax.sql.DataSource
Datasource Classname: interbase.interclient.DataSource
portNumber: 3050
as well as my database info.
I can't seem to find information elsewhere. This question is similar but did not receive an answer.
thanks.
© Stack Overflow or respective owner