Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

org.hibernate.exception.GenericJDBCException: Cannot open connection

 
Ranch Hand
Posts: 397
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Hibernate Connection issue while its also not inserting the records in database.

I am using mysql and my setting is


 
Ranch Hand
Posts: 61
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Hi,

In the cfg file, the valule for the property "hibernate.hbm2ddl.auto" is mentioned as "insert". I don't think this is a valid value.

The valid values are : validate | update | create | create-drop
 
Prabhat Ranjan
Ranch Hand
Posts: 397
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
that is right You are saying but even simple jdbc connection is not working
 
Marshal
Posts: 28177
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Did you explicitly set your MySQL instance to listen on port 3036, or is that a typo in your code? The default port for MySQL is 3306. Since the error message says you can't open the connection, I guess it's a typo in your code. Specify the correct port there.

However I see you already have another long thread in which the difference between 3036 and 3306 has been discussed at length. Please don't post the same problem in multiple threads, it is confusing and wasteful. I will close this one.
 
    Bookmark Topic Watch Topic
  • New Topic