Re: Mapping

2006-11-14 Thread Tim Holloway
Abe White wrote: 1. The reverse mapping tool creates an orm.xml but not annotations on generated Java code. Any plans on this? 2. I fed an orm.xml to Hibernate 3. It works, but if Hibernate is clever enough to automatically translate between camelCase Java names and underscore-punctuated

[jira] Commented: (OPENJPA-81) Bad error message when trying to query a Collection relation using dot notation

2006-11-14 Thread Jakob Braeuchi (JIRA)
[ http://issues.apache.org/jira/browse/OPENJPA-81?page=comments#action_12449747 ] Jakob Braeuchi commented on OPENJPA-81: --- i had to put the alias behind the braces to make it work with hibernate: select distinct k from KategorieGruppe k,

[jira] Commented: (OPENJPA-81) Bad error message when trying to query a Collection relation using dot notation

2006-11-14 Thread Craig Russell (JIRA)
[ http://issues.apache.org/jira/browse/OPENJPA-81?page=comments#action_12449748 ] Craig Russell commented on OPENJPA-81: -- Yes, it's illegal and pending a change to the specification (which is unlikely), you should rewrite the query. Craig

Re: [VOTE] [SECOND ATTEMPT] publish openjpa 0.9.6-incubating release

2006-11-14 Thread Bryan Noll
+1 Marc Prud'hommeaux wrote: OpenJPA People- In accordance with the Incubating Releases guidelines at http://incubator.apache.org/incubation/Incubation_Policy.html#Releases , I'd like to take a third shot at making an OpenJPA release and start a vote on publishing a 0.9.6-incubating

Re: [VOTE] [SECOND ATTEMPT] publish openjpa 0.9.6-incubating release

2006-11-14 Thread Craig L Russell
+1 Craig On Nov 12, 2006, at 2:45 PM, Marc Prud'hommeaux wrote: OpenJPA People- In accordance with the Incubating Releases guidelines at http:// incubator.apache.org/incubation/Incubation_Policy.html#Releases , I'd like to take a third shot at making an OpenJPA release and start a vote

Re: [VOTE] [SECOND ATTEMPT] publish openjpa 0.9.6-incubating release

2006-11-14 Thread Eddie O'Neil
+1 -- great working getting the release packages ready for the Incubator PMC. Eddie On 11/14/06, Craig L Russell [EMAIL PROTECTED] wrote: +1 Craig On Nov 12, 2006, at 2:45 PM, Marc Prud'hommeaux wrote: OpenJPA People- In accordance with the Incubating Releases guidelines at http://

RE: openjpa.Id property

2006-11-14 Thread Patrick Linskey
So I'm having a bit of a hard time with this property setting. In many environments, it makes a lot of sense to line up the openjpa.PersistenceUnitName property with the setting in the persistence.xml file. However, in an appserver, that name might not be unique. We (BEA) sometimes need to be

Re: openjpa.Id property

2006-11-14 Thread Craig L Russell
So does it make sense to consider how Java has handled a similar concept: http://java.sun.com/j2se/1.4.2/docs/api/java/io/ File.html#getAbsolutePath() Could we use some of the same terms, perhaps AbsoluteUnitName for the purpose you are proposing here, and not implement UnitName until

Re: openjpa.Id property

2006-11-14 Thread Bryan Noll
When I see 'AbsoluteUnitName'... I immediately think... I don't know what that means I guess I'd prefer to stick with terminology that I'm more familiar with (and I'm assuming users would be more familiar with it too). Again though... if you feel strongly about this... I'll defer... it's

RE: openjpa.Id property

2006-11-14 Thread Patrick Linskey
I ended up creating an Id property and eventually moving it to the Configuration level, since it seems like something that is usable outside the context of persistence in particular. I'll immediately be using it in LogFactoryImpl to implement something we talked about a while back re: diagnostic