0
我已經訪問命令行傳統的數據存儲如下sqlite的數據存儲:訪問命令行
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,但似乎無法初始化它;有什麼建議麼 ?
謝謝!
你能比「似乎無法初始化它」更具體嗎?當你嘗試時會發生什麼? –