hi
I asked this question on se but it is not interested. I would be very 
appreciated if someone answers this.

I need to store a large text(70k char) to datastore. what I did is working 
fine on localhost. But When I upload it to gae it doesnt store anything. it 
just shows "{}"

if I rename textProperty to StringProperty and change the text, it works. 
where did I do the mistake? I got no error on logs

my db.model:

class Eyut(db.Model):
    texx=db.TextProperty()
    date = db.DateTimeProperty(auto_now_add=False)
    glink=db.StringProperty()

first add:

eks=Eyut(parent=_gazKey('yaz','yaze'),key_name='yaze')
eks.put()

adding text to it:

y=Eyut.get_by_key_name('yaze',parent=db.Key.from_path('Bed','yaz','yaze',1))
y.texx="any text"
y.put()

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/caa8105f-a8cd-485a-86ad-269937c321cf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to