I am using django non-rel ( http://www.allbuttonspressed.com/projects/django-nonrel ) and trying to delete all the data in my production data warehouse. I read the question asked here. How to delete all data stores in Google App Engine? but the answer did not work for me.
Is it because I am not doing it right or because we are using django, where are the layers manipulating the data before saving it to the data store?
To clarify, these are the steps I took to delete all data warehouse data.
I went to the folder with the Google engine in the program files
At the command prompt, enter "remote_shell_api.py yourapp / remote_api"
when I got it successfully, I tried to import one of my application folders, but it will not let me import it, not to mention deleting it.
Of course, entering the text of my project equivalent also failed
from models import Entry query = Entry.all() entries =query.fetch(1000) db.delete(entries)
I also studied the steps here ( http://code.google.com/appengine/docs/python/tools/uploadingdata.html ), but I'm really confused. Can anyone clarify this process? Is this different from regular Google engine projects, if so, how do we use it?
source share