paulo.sobrinho
paulo.sobrinho

Reputation: 93

No suitable driver found for jdbc:mysql netbeans, *.jar include in library

I can perform the connection in worbanch, but with the same username and password can not connect through the application in the mysql database. I checked the syntax apparently seems to be correct. I would like to help to solve this problem as the .jar is already in the library folder of Java SE project.

print screen:

Screen 1

screen 2

ERROR CONSOLE: No suitable driver found for jdbc:mysql://127.0.0.1/sakila

Upvotes: 5

Views: 16366

Answers (1)

Sandun Chathuranga
Sandun Chathuranga

Reputation: 2362

Just simply add the library to your project library. Right click in Library on the Project you use

enter image description here

Then choose MySQL JDBC Driver

enter image description here

Then Click Add Library.So now we can connect to MySQL database

Resource :Java MySQL JDBC Tutorial using NetBeans (Part 1)

Upvotes: 8

Related Questions