How can I drop tables most easily from GAE datastore?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There no such thing as dropping table in GAE. If you want to delete all the entities of a kind. select all the records of the kind. Use a for loop and delete them using delete(). Still you can use your admin console to delete your records. But you cannot delete all the entities of a kind at a time in admin console. Appengine sdk has its own admin console available for the localhost which is accesible at
https://localhost:8080/_ah/admin.