[google-appengine] Re: Type for any types of proprety?

2009-07-30 Thread Juguang XIAO
Thank you guys.. expando is what i am looking for. String has its limitation on 500 bytes in length, right? On Wed, Jul 29, 2009 at 8:41 PM, Daniel Rhoden drho...@gmail.com wrote: A String can go a long way as well. Hopefully your property table has some sane restrictions as to what can

[google-appengine] Re: Type for any types of proprety?

2009-07-30 Thread Nick Johnson (Google)
Hi Jugang, That's correct. If you don't need the fields to be indexed, though, you can wrap your strings in db.Text instances, which have no size limitation (other than the limit of 1MB for the whole entity). -Nick Johnson On Thu, Jul 30, 2009 at 11:04 AM, Juguang XIAO jugu...@gmail.com wrote:

[google-appengine] Re: Type for any types of proprety?

2009-07-29 Thread Daniel Rhoden
A String can go a long way as well. Hopefully your property table has some sane restrictions as to what can go in it. On Jul 29, 2009, at 3:00 AM, Tobias wrote: You may want to use an expando as described here http://code.google.com/appengine/docs/python/datastore/expandoclass.html On