Monday, August 30, 2010

AppEngine Tricks

So I'm working on quite a few Google AppEngine apps and recently, I need to delete all the data in the datastore. I've searched around the interwebs and most of the solution is by using the remote api that uses python. But I don't want to mess around with python so what I did is modify the request parameters from the Datastore viewer so that it displays 200 records at one time which then you can delete using the Delete button below.

Here's the sample URL:

https://appengine.google.com/datastore/explorer?app_id=YOURAPPID&namespace=&kind=Item&limit=200&offset=0&query=SELECT%20*%20FROM%20Item&viewby=kind

No comments: