Jay
Jay

Reputation: 20136

Deleteing entites/objects from the "Data store" in eclipse

I have been debugging an app in eclipse/jetty, and it has a bunch of invalid objects. How do i clear them out? Where are the data entities actually stored when running on your local machine??

Upvotes: 1

Views: 137

Answers (1)

Peter Recore
Peter Recore

Reputation: 14187

If you want to delete the whole (local) datastore, delete this file: ./WEB-INF/appengine-generated/local_db.bin.

Or, you can delete specific objects with delete calls from JDO/JPA/whatever datastore api you are using.

As a third alternative, you can try viewing your data using the admin viewer:

http://localhost:8080/_ah/admin

Since "invalid objects" is kind of vague, you'll have to decide which of these options works best for you.

Upvotes: 5

Related Questions