On Fri, Aug 29, 2014 at 7:20 PM, highroller <[email protected]> wrote: > > I am using google datastore in app engine. I am testing my app backend > with local datastore. How do I mass upload records to the local datastore > for testing? I looked at development console and it doesn't allow upload. >
The development server's datastore is backed by a SQL-Lite file, so you can export your records into a .sqllite format file then configure the development datastore to use that file by declaring the *--datastore_path* argument. ----------------- -Vinny P Technology & Media Consultant Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
