Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.0alpha
-
None
-
None
Description
1. Update the docs to talk about the enhancer phase (nice link http://webspherepersistence.blogspot.com/2009/02/openjpa-enhancement.html)
2. Add a number(#) the questionmarks '?#' (http://openjpa.apache.org/builds/1.2.0/apache-openjpa-1.2.0/docs/manual/manual.html#jpa_overview_query_basic)
select t.entityKey from Tmodel t where (t.authorizedName = ? and UPPER(t.entityKey) like ?)
should be
select t.entityKey from Tmodel t where (t.authorizedName = ?1 and UPPER(t.entityKey) like ?2)
3. Add the persistence.xml where openjpa can find it (in the source tree, or configure in maven)
4. not equals cannot be '!=' but needs to be '<>'
5. The insert order of a collection is random. Use <property name="openjpa.jdbc.UpdateManager" value="operation-order"/> to make it go in order of operation.
6. org.apache.openjpa.kernel.DelegatingResultList does not implement the method subList
7. test that hibernate supports these changes.