| Author |
Unable to Access mysql database through JNDI.
|
Vishal Srivastav
Ranch Hand
Joined: Nov 29, 2008
Posts: 43
|
|
Dear Friends,
I am trying to access mysql database through JNDI but I am not able to access it. I am not much familiar to JNDI. I am sending you the coding part of my programs. Kindly help me and tell where am I making a mistake -
DatabaseCheck.java
Student.java
When I used simple statement
java DatabaseCheck
to run the code, following error message flashed -
I later used the following command for running the application -
java -Djava.naming.factory.initial=com.mysql.jdbc.Driver -Djava.naming.provider.url=jdbc:mysql://localhost:3306/studentDB DatabaseCheck
Then following error msg flashed -
The user of mysql is root and password is mysql@123. Is there something extra needed to be done.
Please tell where I am commiting mistake? Suggestions are welcomed.
Waiting for your response friends.
Regards,
VIshal.
|
Vishal Srivastava, Software Engineer (Android), Paradigm Creatives
SCJP 5, SCWCD 5 - http://in.linkedin.com/in/srivastavavishal
|
 |
Deepak Bala
Bartender
Joined: Feb 24, 2006
Posts: 6321
|
|
-Djava.naming.factory.initial=com.mysql.jdbc.Driver -Djava.naming.provider.url=jdbc:mysql://localhost:3306/studentDB
These are supposed to be JNDI related implementation details. They do not have anything to do with JDBC, thus the class cast exception.
Change the factory and procider URL to reflect the right values
|
SCJP 6 articles - SCJP 5/6 mock exams - SCJP Mocks - SCJP 5 Mock exam (Word document ) - SCJP 5 Mock exam in Java.Inquisition format
|
 |
Syed Saifuddin
Ranch Hand
Joined: Sep 01, 2003
Posts: 127
|
|
|
Check your config file also. config file of server.
|
Thank You & Best Regards,
Syed Saifuddin,
Senior Software Engineer
SAP Oracle AIX & Java Training
http://www.socialinet.com
|
 |
 |
|
|
subject: Unable to Access mysql database through JNDI.
|
|
|