Hi all, if you are using GAE and upgrade to yesterday's release of the SDK you will find that all your data has disappeared! where oh where did it go? well, someone at google had the bright idea to change your appname when running in the development server to dev~<appname>. this means that the datastore can't find your data cause it was stored under the straight app name.
if you can re-import your test data it seems to work just fine. if you are lucky enough to be using sqlite you can connect to the db and rename some tables to get it to work: sqlite3 local_appname_dev_sqlite.datastore sqlite> .tables Apps IdSeq Namespaces appname!!Entities appname!!EntitiesByProperty appname!namespace!Entities appname!namespace!EntitiesByProperty sqlite> alter table `appname!!Entities` rename to `dev~appname!!Entities`; sqlite> alter table `appname!!EntitiesByProperty` rename to `dev~appname!!EntitiesByProperty`; sqlite> alter table `appname!namespace!Entities` rename to `dev~appname!namespace!Entities`; sqlite> alter table `appname!namespace!EntitiesByProperty` rename to `dev~appname!namespace!EntitiesByProperty`; where you substitute 'appname' for your application's name, and 'namespace' for your data namespace. good luck! christian

