[appengine-java] Re: Datastore - entities with package names

2010-05-02 Thread Vaclav Bartacek
I've created a Java GQL parser which allows you to quote kind and property names, so your query would be written: SELECT * FROM 'my.package.myEntity' The description of the parser and link to download source or binary is here: http://audao.spoledge.com/doc-gae-features.html#gqlparser An example o

[appengine-java] Re: Datastore - entities with package names

2010-05-02 Thread madthanu
low level On May 2, 12:22 am, Tristan wrote: > are you referring to JDO/JDA or low-level datastore? > > On Apr 30, 6:42 pm, madthanu wrote: > > > > > > > I have my entity class inside a seperate Java package, so the full > > class name of the entity is something like > > > my.package.myEntity >

[appengine-java] Re: Datastore - entities with package names

2010-05-01 Thread Tristan
are you referring to JDO/JDA or low-level datastore? On Apr 30, 6:42 pm, madthanu wrote: > I have my entity class inside a seperate Java package, so the full > class name of the entity is something like > > my.package.myEntity > > How do you use GQL to do a select when the class name is this? The