I have used the code below to insert an entity (yes , supposed to be
only one entity inserted per request). However, it has inserted two
entities per request.
Do you encounter this problem ?
Thanks.
=============
#coding=utf-8
from google.appengine.ext import db
class Order(db.Model):
time = db.DateTimeProperty(auto_now_add=True)
stri = db.StringProperty()
obj1 = Order(stri='test')
obj1.put()
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.