-
Archives
- May 2018
- July 2017
- June 2017
- May 2017
- April 2017
- November 2016
- June 2016
- May 2016
- April 2016
- December 2015
- July 2015
- June 2015
- March 2015
- April 2014
- August 2013
- June 2013
- April 2013
- February 2013
- January 2013
- July 2012
- November 2011
- August 2011
- March 2011
- February 2011
- January 2011
- November 2010
- July 2010
- June 2010
- April 2010
- March 2010
- January 2010
- November 2009
- April 2009
- February 2009
- January 2009
- October 2008
-
Meta
Monthly Archives: April 2016
DN v5 : Support for Java8 “Optional”
Java 8 introduces a class (java.util.Optional) that represents either a value or null. DataNucleus v5 has a requirement of Java 8, and adds support for persisting and querying fields of this type. Let’s suppose we have a class like this … Continue reading
Posted in Uncategorized
Leave a comment
DN v5 : JPA with “nondurable” identity
With standard JPA you only have the ability to have “application” identity for an entity (i.e field(s) marked as being part of the primary-key). Some time ago we added vendor extension support for having a surrogate (datastore) identity for an … Continue reading
Posted in Uncategorized
Leave a comment
DN v5 : JPQL FROM JOIN to another “root” entity
A vendor extension now available in DataNucleus v5 is for JPQL’s ability to JOIN to other entities. In standard JPQL you can only add a JOIN through a relation. For example SELECT p FROM Person p JOIN p.address a WHERE … Continue reading
Posted in Uncategorized
Leave a comment