The Artima Developer Community
Sponsored Link

Java Buzz Forum
hibernate.cfg.xml settings for derby, oracle and h2

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Peter Karich

Posts: 468
Nickname: pettar
Registered: Apr, 2008

Peter Karich is Physicist and Java Software Developer
hibernate.cfg.xml settings for derby, oracle and h2 Posted: Jun 9, 2009 10:29 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Peter Karich.
Original Post: hibernate.cfg.xml settings for derby, oracle and h2
Feed Title: Java and more ...
Feed URL: https://karussell.wordpress.com/category/java/feed/
Feed Description: Just another weblog. Its about my developer experiences with Java in general. In detail I will blog about NetBeans, Eclipse, Design Patterns, News, Web Frameworks and other tools. My focus will be open source tools, which make the life of a Java developer easier.
Latest Java Buzz Posts
Latest Java Buzz Posts by Peter Karich
Latest Posts From Java and more ...

Advertisement
It took me some time to collect the hibernate.cfg.xml data which is necessary for derby, oracle and h2. So here are the default settings for those databases: Apache Derby (network) You start the network server and specify the following options in the script: Linux: DERBY_OPTS=”-Dij.driver=org.apache.derby.jdbc.ClientDriver -Dij.protocol=jdbc:derby://localhost:1527/ -Dij.user=admin -Dij.password=admin” Windows: set DERBY_OPTS=”-Dij.driver=org.apache.derby.jdbc.ClientDriver -Dij.protocol=jdbc:derby://localhost:1527/ -Dij.user=admin -Dij.password=admin” <property name=”hibernate.connection.driver_class”>org.apache.derby.jdbc.ClientDriver</property> <property name=”hibernate.connection.url”>jdbc:derby://localhost:1527/databaseName;create=true</property> <property name=”hibernate.connection.username”>admin</property> <property name=”hibernate.connection.password”>admin</property> <!– no [...]

Read: hibernate.cfg.xml settings for derby, oracle and h2

Topic: FTC: Sears agrees to settle claims over personal data company collected by tracking Web use Previous Topic   Next Topic Topic: FireShot: Free Image Editor To Capture and Edit Screenshots

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use