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 "EclipseLink/Examples/JPA/Where"

(Download Example)
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
 
</div>
 
</div>
  
= EclipseLink JPA GeoNames Example =
+
= EclipseLink JPA Where Example =
  
 
This example illustrates the use of EclipseLink JPA against a public domain data-set made available through [http://www.geonames.org www.geonames.org] which makes its data available under the  [http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 License]. This example is intended to illustrate the use of EclipseLink with a non-trivial amount of data.
 
This example illustrates the use of EclipseLink JPA against a public domain data-set made available through [http://www.geonames.org www.geonames.org] which makes its data available under the  [http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 License]. This example is intended to illustrate the use of EclipseLink with a non-trivial amount of data.
Line 13: Line 13:
 
During development this example is available as a work-in-progress from the EclipseLink SVN. When version 1.0 ships this example will be made available in zip format download.
 
During development this example is available as a work-in-progress from the EclipseLink SVN. When version 1.0 ships this example will be made available in zip format download.
  
SVN location for work-in-progress: /svnroot/rt/org.eclipse.persistence/trunk/examples/org.eclipse.persistence.example.jpa.geonames/
+
SVN location for work-in-progress: /svnroot/rt/org.eclipse.persistence/trunk/examples/org.eclipse.persistence.example.jpa.where/
  
 
== Domain Model ==
 
== Domain Model ==

Latest revision as of 08:06, 29 March 2009

Catnicon.gifThis example is currently under development see Bug 227113

EclipseLink JPA Where Example

This example illustrates the use of EclipseLink JPA against a public domain data-set made available through www.geonames.org which makes its data available under the Creative Commons Attribution 3.0 License. This example is intended to illustrate the use of EclipseLink with a non-trivial amount of data.

Download Example

During development this example is available as a work-in-progress from the EclipseLink SVN. When version 1.0 ships this example will be made available in zip format download.

SVN location for work-in-progress: /svnroot/rt/org.eclipse.persistence/trunk/examples/org.eclipse.persistence.example.jpa.where/

Domain Model

The domain model for this example is based on the GeoNames data set.

  • Country
    • AdminDivision
  • TimeZone
  • Language
  • Feature
  • Point

Back to the top