On Mon, Mar 31, 2014 at 4:48 AM, Abel Barbosa <[email protected]> wrote:
> Hi. I'm developing an application that reads data from a local SQL Server > database into the app engine. > Until now everything works fine. The problem I found so far is about the > internationalization found on the mentioned local SQL Server with witch I'm > struggling to replicate in the app engine. > > I could only think of two solutions to replicate this in the app engine: > To clarify, it sounds like you're trying to export your data from a SQL-backed store into the NoSQL datastore, correct? Is there a particular reason that you need to use the datastore over your current SQL solution? >From your question, it sounds as though you're confusing App Engine with the type of database being used. App Engine can use both SQL and NoSQL databases. If you have a current SQL-based solution that works for you, keep it. You can upload your SQL DB into a Google Cloud SQL instance ( https://developers.google.com/cloud-sql/docs/instances ) and allow App Engine to read data from there. ----------------- -Vinny P Technology & Media Advisor 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.
