I'm making a BBS by using google apps. It works, but it's under 5000 words by each thread. I unioned 10 db.StringProperty() of db.model.
I planned to union 1000 StringProperty(), but it doesn't work for more than 10.
Google apps engine ignores additional StringProperty()'s.
The error said:
'TypeError: coercing to Unicode: need string or buffer, NoneType found'.
The code is like this: model.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import datetime
import uuid
import re
from google.appengine.ext import db
class Post(db.Model):
user = db.UserProperty()
ct = db.IntegerProperty()
uid = db.StringProperty()
indx = db.StringProperty()
title = db.StringProperty()
updated_at = db.DateTimeProperty(auto_now_add=True)
entry = db.StringProperty(multiline=True)
entry1 = db.StringProperty(multiline=True)
entry2 = db.StringProperty(multiline=True)
entry3 = db.StringProperty(multiline=True)
entry4 = db.StringProperty(multiline=True)
entry5 = db.StringProperty(multiline=True)
entry6 = db.StringProperty(multiline=True)
entry7 = db.StringProperty(multiline=True)
entry8 = db.StringProperty(multiline=True)
entry9 = db.StringProperty(multiline=True)
entry10 = db.StringProperty(multiline=True)
entry11 = db.StringProperty(multiline=True)
entry12 = db.StringProperty(multiline=True)
...
entry999 = db.StringProperty(multiline=True)
I'm just testing it at localhost:8080.
Google apps ignores from entry10. entry9 is recognized.
I read google site guide, but I didn't find any que about it.
If defining entry1-1000 is impossible, I want to define as many as it allows.
Or it doesn't allow any more element?
Sorry for my bad english.
