| Author |
problem with jdbc driver
|
fabian verbeek
Ranch Hand
Joined: Oct 20, 2012
Posts: 52
|
|
Hi,
I'm learning java and now i'm at the chapter with hibernate.
I started by downloading the source and put the jar content in the folder required in my lib directory.
My jar mysql_connector_java is under the directory lib in my lib tomcat folder.
Every jar are added in the java build path
I added the hibernate.cfg.xml file with this
I tried to connect me in console in mysql and it works with: mysql -u root
I created my database gestImmo and a table user.
here i'm the next step, add hibernate mapping file and i have an issue in eclipse (i'm using mac os x lion):
In front of Driver: com.mysql.jdbc.Driver
database URL : jdbc://mysql://localhost/gestImmo
username : root
password :
When i click refresh to see my available tables i've the following error:
this is most likely due to the url not matching the expected value by the jdbc driver. please verify your setting
thanks a lot for your help
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
|
That database URL doesn't look correct. Here's a link to the documentation on the MySQL site: http://dev.mysql.com/doc/refman/5.0/en/connector-j-reference-configuration-properties.html.
|
 |
fabian verbeek
Ranch Hand
Joined: Oct 20, 2012
Posts: 52
|
|
great reply and fast.
thanks a lot, the correct url was : jdbc:mysql://localhost:3306/gestImmo
|
 |
William P O'Sullivan
Ranch Hand
Joined: Mar 28, 2012
Posts: 860
|
|
3306 is the MySql default port. Remember that if you ever change the port in MySql config, to also update the connection strings.
WP
|
 |
 |
|
|
subject: problem with jdbc driver
|
|
|