Error using mySQL connection Pool
I see the following error when my application uses the connection pool - can anyone explain this ?
INFO: CORE3282: stdout: =======================>ERROR :com.sun.enterprise.repository.J2EEResourceException
WARNING: CORE3283: stderr:at com.sun.enterprise.resource.IASNonSharedResourcePool.initPool(IASNonSharedResou rcePool.java:416)
WARNING: CORE3283: stderr:at com.sun.enterprise.resource.IASNonSharedResourcePool.internalGetResource(IASNon SharedResourcePool.java:625)
WARNING: CORE3283: stderr:at com.sun.enterprise.resource.IASNonSharedResourcePool.getResource(IASNonSharedRe sourcePool.java:520)
INFO: CORE3282: stdout: java.lang.NoSuchMethodException: setdataSourceName
[729 byte] By [
705485] at [2007-11-25 8:43:15]

Hi,
You have used dataSourceName property while creating a connection pool.This property is not required to be set while creating a connection pool for MySql
Use the following properties:
<property name="serverName" value="<name of server>"
><property name="port" value="<port number>"
><property name="DatabaseName" value="<your db name>"
><property name="User" value="<user name>"
><property name="Password" value="<passwd>"
Get back in case of any issues
>
> Hi,
>
> You have used dataSourceName property while creating
> a connection pool.This property is not required to be
> set while creating a connection pool for MySql
thank you, Amol!
I had the same problem with SunAS 7 / MS SQL Server (I use jDTS driver)
Pegas at 2007-7-1 15:23:19 >
