The Datastore has no concept of 'table'.
All Entities - regardless of their kind- are stored in one 'bigtable'
- they are all intermingled. In fact all Entities from everyone's apps
are stored in the same bigtable.
So to delete a 'table' - which is really just all entities of a given
kind for a given app - would need to loop though and delete each
individual entity. Once there are no entities of a given kind/model
left, the 'kind' has effectively been dropped.
I would guess need to check you aren't somehow using the application
version in the Kind name or even the key?. Then when the application
is updated, the version changes and therefore the old entities become
inaccessible.
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-a...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengi...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
to view your datastore, to see if the data is still there.
On Mon, Oct 31, 2011 at 2:32 PM, Phil McDonnell
See the "A Note for Java Developers" section.
On Tue, Nov 1, 2011 at 4:45 PM, Phil McDonnell
I though you would have to use the same trick to make a python version
of the main (ie source in that documents terms) app too, to view the
stats in the datastore.
On Fri, Nov 4, 2011 at 8:21 PM, Phil McDonnell