jQuery in Action
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » JDBC
 
RSS feed
 
New topic
Author

Unable to Access mysql database through JNDI.

Vishal Srivastav
Greenhorn

Joined: Nov 29, 2008
Messages: 28

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 Srivastav
SCJP 5, SCWCD 5,
Java Consultant, SQL Star International Ltd.
http://in.linkedin.com/in/srivastavavishal
Deepak Bala
Bartender

Joined: Feb 24, 2006
Messages: 4847

-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
Messages: 126

Check your config file also. config file of server.

Thank You & Best Regards,

Syed Saifuddin,
Senior Software Engineer

http://www.socialinet.com
 
jQuery in Action
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » JDBC
 
RSS feed
 
New topic
IntelliJ open source

.