[google-appengine] Bad entity in Datastore

2010-11-10 Thread jdwx
Hello,

I have a datastore entry that is not viewable i.e. I get A server
error has occurred. when I click on the entry in the datastore
viewer. This particular data entry is causing my app to crash too when
I try to retrieve  and display it. Does anyone know the reason?


Thank you.
Gerald

-- 
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-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Bad entity in Datastore

2010-11-10 Thread Robert Kluin
Hi Gerald,
  Is there any information in your logs?  If not maybe you want to
provide a little more info about the context, such as the model def,
how data gets in, how you get it out, etc...


Robert







On Wed, Nov 10, 2010 at 10:45, jdwx jdwxj...@gmail.com wrote:
 Hello,

 I have a datastore entry that is not viewable i.e. I get A server
 error has occurred. when I click on the entry in the datastore
 viewer. This particular data entry is causing my app to crash too when
 I try to retrieve  and display it. Does anyone know the reason?


 Thank you.
 Gerald

 --
 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-appeng...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-appengine?hl=en.



-- 
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-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Bad entity in Datastore

2010-11-10 Thread 风笑雪
You can try to retrieve it by low level api:

from google.appengine.api import datastore
print datastore.Query('model_name', {'attr_name =': xxx}).Get(1)


--
keakon



On Wed, Nov 10, 2010 at 11:45 PM, jdwx jdwxj...@gmail.com wrote:
 Hello,

 I have a datastore entry that is not viewable i.e. I get A server
 error has occurred. when I click on the entry in the datastore
 viewer. This particular data entry is causing my app to crash too when
 I try to retrieve  and display it. Does anyone know the reason?


 Thank you.
 Gerald

 --
 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-appeng...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-appengine?hl=en.



-- 
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-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.