Resource « DataSource « Java Database Q&A





1. Unable to fill pool org.jboss.resource.JBossResourceException: Could not create connection    stackoverflow.com

Hi guys i have a problem with JBoss 5.0.1 and SqlServer 2005. The thrown exception is like that " [JBossManagedConnectionPool] Unable to fill pool org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: ...

2. Easy way to start a standalone JNDI server (and register some resources)    stackoverflow.com

For testing purposes, I'm looking for a simple way to start a standalone JNDI server, and bind my javax.sql.DataSource to "java:/comp/env/jdbc/mydatasource" programmatically. The server should bind itself to some URL, for example: ...

3. DataSource or ConnectionPoolDataSource for Application Server JDBC resources    stackoverflow.com

When creating JNDI JDBC connection pools in an application server, I always specified the type as javax.sql.ConnectionPoolDataSource. I never really gave it too much thought as it always seemed natural ...

4. Make portable J2EE applications using JNDI resource names for pooling    stackoverflow.com

I am preparing a J2EE web application that should hopefully be packaged and sold to clients as a war file. Each client will deploy the package into his preferred application server ...

5. Is javax.sql.DataSource a costlier resource like java.sql.Connection?    coderanch.com

If i am using TOMCAT as container and configured all JNDI configuration with required properties, once TOMCAT is started, the connection pool should be ready and when we lookup for the DataSource instance we will get hold of the connection pool. Am I correct here? If i am correct above, even if i try to lookup multiple times, i will get ...