hi all,

i *think* that it is honoring your datastore location (though the log 
message is incorrect), but the change to rename your application to 
dev~<your appname> in development has just rendered all of our test data 
useless.

after re-importing my test data it does look like it is stored where i ask 
it to be, but under the new application name.

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 datanamespace.

cfh

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/HvLD9aX68dYJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to