unable to establish a ConnectionPool with MySQL

Hello all, just some background here. I am able to establish JDBC connections with the db, and can connect using Java Studio Enterprise 8. But, I like the subject states, I can not create a ConnectionPool.

I set up a pool, then try to ping it, and the error I get is...

Operation 'pingConnectionPool' failed in 'resources' Config Mbean. Target exception message: com.mysql.jdbc.Driver

here are some details:

the mysql driver jar is located at ...\domain\lib\ext directory

Name: mysqla

driver: com.mysql.jdbc.Driver

resource type: javax.sql.DataSource (note: I also get the same error if I use java.sql.XADataSource and java.sql.ConnectionPoolDataSource)

database name: jdbc:mysql://localhost:3306/ejbxp

I also set user and password

everything else is default. Also, on MySQL, max connections is set a 100 so connections shouldn't be an issue.

So, does anybody have any idea what is wrong? Thanks for your time

[994 byte] By [a_java_developer01] at [2007-11-26 6:24:11]
# 1

anyways, here is the xml from domain.xml for the connection pool config

<jdbc-connection-pool connection-validation-method="auto-commit"

datasource-classname="com.mysql.jdbc.Driver" fail-all-connections="false"

idle-timeout-in-seconds="300" is-connection-validation-required="false"

is-isolation-level-guaranteed="false" max-pool-size="32"

max-wait-time-in-millis="60000" name="mysqla" pool-resize-quantity="2"

res-type="javax.sql.DataSource" steady-pool-size="8">

<property name="user" value="********" />

<property name="password" value="********" />

<property name="databaseName" value="jdbc:mysql://localhost:3306/ejbxp" />

</jdbc-connection-pool>

a_java_developer01 at 2007-7-6 14:13:25 > top of Java-index,Application & Integration Servers,Application Servers...
# 2
Well, I finally succeded in creating a connection, I had to go through a pretty old thread here: http://forum.java.sun.com/thread.jspa?threadID=563266I followed harold's directions and it worked.
a_java_developer01 at 2007-7-6 14:13:25 > top of Java-index,Application & Integration Servers,Application Servers...