Tagged Questions

0
votes
1answer
31 views

Google app engine datastore reference or not?

hi, i am filling up a big table with text items from different countries. My question is: Should i use a referencePropery to link to languages in another table?. Thats the way i would do it in a …
0
votes
1answer
37 views

How do we override the choice field display of a reference property in appengine using Django?

The default choice field display of a reference property in appengine returns the choices as the string representation of the entire object. What is the best method to override this behaviour? I tried …
0
votes
1answer
81 views

Google App Engine - ReferenceProperty() gives error - Generic reference - Polymodel

Given a Polymodel in Google App Engine, likeso: from google.appengine.ext import db from google.appengine.ext.db import polymodel class Base(polymodel.PolyModel): def add_to_referer(self): …
0
votes
2answers
310 views

Deleting erroneous ReferenceProperty properties in AppEngine

Most of the time, the errors you get from your model properties will happen when you're saving data. For instance, if you try saving a string as an IntegerProperty, that will result in an error. The …