SELECT * FROM Przedszkole where __key__ =
Key('agtzfmUtZHppZWNrb3ITCxILUHJ6ZWRzemtvbGUYgooIDA')
results with Server error 500 and strange message: "address must not
be empty."
My application is http://e-dziecko.appspot.com .
Any hint on this?
More funny, access object programatically seems to work without any
interruption.
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To post to this group, send email to google-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
Thanks for your reply. Anyway, the problem is a bit deeper. When I set
the property to null, my App Engine Data Vievwer panel was fixed. So
null is valid value for my field. Before that, I accessed the field
programically (JAVA through JDO) and get very strange value for that
field:
com.google.appengine.api.datastore.PostalAddress@0 <- zero is probably
bad value here.
I suppose that it was a bug in JDO when persisting the entity do
DataStore. After fixing property (setting it to null), it seems to
work.
SELECT * FROM Docprod where __key__ = KEY('Docprod', 6192449487634432)
2. Docprod is a child of 'mrwdocbkup', so I tried also without any success:
SELECT * FROM Docprod where _key_ = KEY('mrwdocbkup', 4922171302346752, 'Docprod', 6192449487634432 )
value of the key I found in ID/Name column of all records (SELECT * FROM Docprod)
I would like to use GAE Datastore for my app, but I need to know that if my customer will have a problem I will be able to run quick query to be able to provide better customer support.
Thank you,
Rimma
Could you please tell me what I am doing wrong. I am trying to run GQL queries from Google App Engine site from Datastore Viewer.1. I tried with '6192449487634432', 6192449487634432L, '6192449487634432L'SELECT * FROM Docprod where __key__ = KEY('Docprod', 6192449487634432)
2. Docprod is a child of 'mrwdocbkup', so I tried also without any success:
SELECT * FROM Docprod where _key_ = KEY('mrwdocbkup', 4922171302346752, 'Docprod', 6192449487634432 )