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

(New page: This example is currently under development under [http://bugs.eclipse.org/227113 Bug 227113] = EclipseLink JPA GeoNames Example = This example illustrates the use of EclipseLink JPA ag...)
 
(Download Example)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
<div style="border:1px solid #999999;background-color:#ffffff;align:center">
 +
<table border="0" cellpadding="5" align="center"><tr><td width="20">[[image:Catnicon.gif]]</td><td>This example is currently under development see [http://bugs.eclipse.org/227113 Bug 227113]</td></tr></table>
 +
</div>
  
This example is currently under development under [http://bugs.eclipse.org/227113 Bug 227113]
+
= EclipseLink JPA Where Example =
  
= EclipseLink JPA GeoNames 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] 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.
+
__TOC__
 +
 
 +
== 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

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