I have a table in Google App Engine. Accessing the data through
python. And displaying in an iPhone App. When after data access i try
to delete the records, these don delete from Table but don show in
iPhone app too. ANy solution?
Does not work for both queries given below
TestDB.filter ('receiverPhoneId =', receiverid).get().delete()
Or
q = db.GqlQuery("SELECT * FROM TestDB WHERE receiverPhoneId = :1",
receiverid)
results = q.fetch(10)
for result in results:
result.delete()
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---