Hi Donald, The org.apache.openjpa.conf.Compatibility class is the best place to put these options. The compatibility instance can be configured like any other openjpa property ie :
<property name="openjpa.Compatibility" value="FlushBeforeDetach=true"/> Just add the apropriate instance variable and get/set methods and you should be fine. HTH -mike On Mon, Mar 9, 2009 at 4:39 PM, Donald Woods <[email protected]> wrote: > In looking at adding query timeout support for JPA 2.0, I've discovered > that the existing lock manager code is using setQueryTimeout() for the > locks, instead of using the server-side methods (like for DB2 "SET LOCK > TIMEOUT <secs>".) What is the suggested way of creating a "compatibility" > mode, so users can choose the old behavior over the new 2.0 implementation? > > > -Donald >
