Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know this kind of question pop up a lot but I needed to ask this question.

I have the jar file containing mysql jdbc driver , namely mysql-connector-java-5.1.12-bin.jar.
I opened this jar file and confirmed that this jar file does contain com.mysql.jdbc.Connection.class.

Class.forName("com.mysql.jdbc.Connection");

This does not throw any exceptions.

When I try to get a connection with the code below however I get an exception.

con = DriverManager.getConnection(dbURL,dbUNM,dbUPW);

(I'm not sure if it's wise to put the connection URL uphere)

I get this

java.sql.SQLException: No suitable driver found for jdbc:mysql:xxx....

also I see

    Servlet.service() for servlet jsp threw exception
java.lang.NullPointerException
    at org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:968)
    at org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.java:624)
    at org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:823)
    at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:794)
    at org.apache.jsp.index_jsp._jspService(index_jsp.java:1134)

Can you point out what I'm doing wrong ? Thank you : )

share|improve this question
What is your connection string? – András Kerekes Jan 18 at 6:00
Do you understand the difference between 'connection' and 'driver'? Not a real question. – EJP Jan 18 at 10:03
If it's not a real question, what is it then ? Yes, I understand the difference. I just didn't see it. Thank you. – PerfectGundam Jan 22 at 6:50

1 Answer

up vote 6 down vote accepted

You need to load the driver class using Class.forName - try the following line of code

Class.forName("com.mysql.jdbc.Driver");
share|improve this answer
2  
+1. load the Driver, not Connection – Thilo Jan 18 at 6:00
Oh god, I'm so blushed. Thanks !! – PerfectGundam Jan 18 at 6:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.