-
Technically, yes - by changing Callable.call() to Runnable.run() and converting the return value to a member variable with the appropriate accessor method - but why would you want to do that?.
2009-11-11 02:28:57 UTC in HA-JDBC
-
It looks like you configured the ha-jdbc datasource in websphere as a jdbc resource - and WS is trying to back it with a pool. You probably want to register the net.sf.hajdbc.sql.DataSource as a plain jndi object, since WS is already managing the backing pools.
2009-10-30 14:48:03 UTC in HA-JDBC
-
This is not a bug, but rather a mis-configuration. style configurations are only valid for clusters originating from a net.sf.hajdbc.sql.DataSource (implements javax.sql.DataSource), net.sf.hajdbc.sql.DataSourceReference (implements javax.naming.Reference), or net.sf.hajdbc.sql.DataSourceFactory (implements javax.naming.spi.ObjectFactory).
The stack trace indicates that the...
2009-10-29 13:21:00 UTC in HA-JDBC
-
OK - I see what you're trying to do. You've setup 2 connection pools - each exposed as a javax.sql.DataSource. In this case, you want to use the <datasource/> style configuration to wrap these 2 datasources. You would then configure net.sf.hajdbc.sql.DataSource as your JDBC data provider (containing a property "cluster" for setting the cluster id, and "config" for...
2009-10-29 03:46:04 UTC in HA-JDBC
-
ferraro committed revision 2261 to the HA-JDBC SVN repository, changing 1 files.
2009-10-28 16:04:41 UTC in HA-JDBC
-
ferraro committed revision 2260 to the HA-JDBC SVN repository, changing 2 files.
2009-10-28 15:50:22 UTC in HA-JDBC
-
ferraro committed revision 2259 to the HA-JDBC SVN repository, changing 4 files.
2009-10-28 15:47:21 UTC in HA-JDBC
-
ferraro committed revision 2258 to the HA-JDBC SVN repository, changing 1 files.
2009-10-28 15:46:24 UTC in HA-JDBC
-
ferraro committed revision 2257 to the HA-JDBC SVN repository, changing 1 files.
2009-10-28 15:03:41 UTC in HA-JDBC
-
Please attach your ha-jdbc configuration file. It appears that the <name/> of one or all of your <pool-datasource/> entries either:
1. Does not implement javax.sql.ConnectionPoolDataSource
2. Contains a jndi resource that does not implement (or reference an object that implements) javax.sql.ConnectionPoolDataSource.
2009-10-28 02:28:34 UTC in HA-JDBC