Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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/DB Store"

< CDO
(New page: ---- ''We are still working on the details, but once we have completed the wiki we'll remove this text'' ---- The CDO DB store is an implementation to the CDO Store that allows storing of...)
 
Line 1: Line 1:
----
+
The CDO DB store is an implementation of the CDO IStore that allows to store models and meta models in relational databases. It does not use 3rd party components other than database vendor-specific JDBC drivers. The DB store is a proprietary O/R mapper.
''We are still working on the details, but once we have completed the wiki we'll remove this text''
+
----
+
  
The CDO DB store is an implementation to the CDO Store that allows storing of model and model repository into relational databases.
+
== Features ==
  
This document will help users setup there environment and configure CDO to work with the DB, we'll also include an example and step by step tutorial.
+
* Supports all optional features of the [[#CDO_Server|CDO Server]].
We tried to make it as seamless as possible to enable your Application to store model repository in the DBStore.
+
* Pluggable SQL dialect adapters. Includes support for [[Derby]], [[H2]], [[HSQLDB]], [[MySQL]], [[PostgreSQL]] and [[Oracle]] .
 +
* Pluggable mapping strategies. Includes horizontal mapping strategy (one table per concrete class, no joins).
 +
* Various mapping options by using EAnnotations on model elements: [http://git.eclipse.org/c/cdo/cdo.git/tree/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/DBAnnotation.java DBAnnotation.java]
  
== Documentation ==
 
  
* Configuring the DBStore: see http://wiki.eclipse.org/CDO/Server_Configuration_Reference#Element_store#
+
== Configuration ==
  
== Dependencies ==
+
* Configuring the DBStore: see [[CDO/Server_Configuration_Reference#Element_store]].
  
TBD
 
 
== Plugins and CVS ==
 
 
The CDO DBStore can be found in cvs in the following location:
 
* dev.eclipse.org
 
* /cvsroot/modeling
 
* main path: org.eclipse.emf/org.eclipse.emf.cdo
 
 
The functionality is implemented in the following plugins (the other plugins/projects in the same cvs location can be ignored):
 
* org.eclipse.emf.cdo.server.db: implements the CDO DBStore itself
 
* Test Project and Net4j-DBAdapters: TBD
 
 
= Supported Functions and Features =
 
  
 
----
 
----
 
Wikis: [[CDO]] | [[Net4j]] | [[EMF]] | [[Eclipse]]
 
Wikis: [[CDO]] | [[Net4j]] | [[EMF]] | [[Eclipse]]

Revision as of 01:37, 18 November 2012

The CDO DB store is an implementation of the CDO IStore that allows to store models and meta models in relational databases. It does not use 3rd party components other than database vendor-specific JDBC drivers. The DB store is a proprietary O/R mapper.

Features

  • Supports all optional features of the CDO Server.
  • Pluggable SQL dialect adapters. Includes support for Derby, H2, HSQLDB, MySQL, PostgreSQL and Oracle .
  • Pluggable mapping strategies. Includes horizontal mapping strategy (one table per concrete class, no joins).
  • Various mapping options by using EAnnotations on model elements: DBAnnotation.java


Configuration



Wikis: CDO | Net4j | EMF | Eclipse

Copyright © Eclipse Foundation, Inc. All Rights Reserved.