Re: [google-appengine] Re: Index problem with GAE for Java

2010-11-10 Thread Jeff Schwartz
Sorry, I didn't realize at first that you were using jdo and so you are correct, jdo will require package names for the pojo entity. However, you might want to rethink using that particular geomodel implementation if it requires jdo and select one that allows you more flexibility in you architectur

[google-appengine] Re: Index problem with GAE for Java

2010-11-09 Thread Rmac
Using Java and JDO. The package path is needed... fails without that. As I said earlier, it will work if I remove the where clause (or use a different property) so I am able to connect to the datastore and pull data. I can even look at the data from the Admin console so it is there and accessibl

Re: [google-appengine] Re: Index problem with GAE for Java

2010-11-09 Thread Jeff Schwartz
Should have asked what language you are using (Java or Python) as well as if you are using jdo/jpa etc. The entity type you are querying - myPackage.HospitalData - is the 'myPackage' part a package name? If so, why? The datastore doesn't know about packages, it only knows about Entity types which

[google-appengine] Re: Index problem with GAE for Java

2010-11-09 Thread Rmac
Nope, that throws a different error: Identifier expected at character 1 in "*" On Nov 9, 10:43 am, Jeff Schwartz wrote: > Try: > > select * from HospitalData where Version = '1' order by Hospital_Name asc > > Jeff > > > > On Tue, Nov 9, 2010 at 11:16 AM, Rmac wrote: > > Thanks Jeff... here you