I'm currently using Google Datastore for storing data. I want to keep an offline version in the form of sql database. Is it possible to use sqlite on google app engine to convert datastore into sql database?
相关问题
- java.lang.NullPointerException at java.io.PrintWri
- SQL/SQL-LITE - Counting records after filtering
- __call__() missing 1 required positional argument:
- Upload file to Google Cloud Storage using AngularJ
- What SQLite NuGet package do I need
No, it is not possible to use sqlite on AppEngine.
Currently there is no option to convert data from the AppEngine datastore to a SQL database.
You can do this locally since Python Development Server v1.7.6 (link outdated)
https://developers.google.com/appengine/docs/python/tools/old_devserver#Using_the_Datastore
New description from Google:
https://cloud.google.com/appengine/docs/python/tools/devserver
See also this example.