我一直在从命令行访问传统数据存储区,如下所示:
from google.appengine.api import apiproxy_stub_map
from google.appengine.api.datastore_file_stub import DatastoreFileStub
os.environ['APPLICATION_ID']="myapp"
apiproxy_stub_map.apiproxy=apiproxy_stub_map.APIProxyStubMap()
stubname, stub = 'datastore_v3', DatastoreFileStub(os.environ["APPLICATION_ID"], Datastore, "/")
apiproxy_stub_map.apiproxy.RegisterStub(stubname, stub)
我已升级到sqlite数据存储区,需要更新存根(可能是stubname),大概是使用DatastoreSqliteStub,但似乎无法初始化它;有什么建议吗?
谢谢!