On Tue, Aug 27, 2013 at 2:52 AM, Sercan Altundas <[email protected]>wrote:
> Is that possible to connect an external mssql server and query from db > using a app engine application written in python? > > You can't connect to an external MS SQL server on App Engine because the ODBC drivers required use C extensions, which are not available on GAE. What you can do is build a custom REST API on your MS SQL server, and proxy your queries through that. Another option is to use triggers to send any updates from the MS SQL server to a Cloud SQL instance and have your application access the Cloud SQL service (this will also be faster than connecting to the MS service). ----------------- -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/groups/opt_out.
