google app engine - View data not created by the model class appengine python -
i have data in database added non model class method (say using sqlite3) running locally there way can view data or add model schema? same database, table created , populated externally, way access data?
there's variety of sqlite tools can use directly access database.
https://addons.mozilla.org/en-us/firefox/addon/sqlite-manager/
note work on dev server, sqlite used emulate datastore.
the better option @ low level datastore api. don't know if there's online documentation, can through python code in app engine sdk, google.appengine.api.datastore
, has basic datastore commands.
Comments
Post a Comment