Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "CDO/Hibernate Store/Troubleshooting"

(New page: __TOC__ CDO_Hibernate_Store ---- Wikis: CDO | Net4j | EMF | Eclipse)
 
Line 1: Line 1:
 
 
__TOC__
 
__TOC__
  
 +
=== My database does not get created ===
 +
 +
Hibernate will not create the database for you, you have to manually create a database. You don't need to create the tables and other database schema parts. That's done by hibernate.
 +
 +
=== Hibernate drops my database when the application stops ===
 +
 +
This is probably the hibernate.hbm2ddl.auto property in the cdo-server.xml, change it from 'create-drop' to 'update'.
 +
 +
=== Teneo specific troubleshooting ===
 +
 +
=== Relevant links for more information ===
  
CDO_Hibernate_Store
+
* [http://www.hibernate.org Hibernate]
 +
* [http://www.elver.org Teneo Documentation]
 +
* [http://www.eclipse.org/modeling/emf/newsgroup-mailing-list.php EMF Newsgroup]
  
  
 
----
 
----
 
Wikis: [[CDO]] | [[Net4j]] | [[EMF]] | [[Eclipse]]
 
Wikis: [[CDO]] | [[Net4j]] | [[EMF]] | [[Eclipse]]

Revision as of 21:14, 20 January 2010

My database does not get created

Hibernate will not create the database for you, you have to manually create a database. You don't need to create the tables and other database schema parts. That's done by hibernate.

Hibernate drops my database when the application stops

This is probably the hibernate.hbm2ddl.auto property in the cdo-server.xml, change it from 'create-drop' to 'update'.

Teneo specific troubleshooting

Relevant links for more information



Wikis: CDO | Net4j | EMF | Eclipse

Back to the top