Hello
Somebody knows if is it possible connect an application from Appengine to a mysql database hosted in compute engine?
I'm trying to do this with python and i have this error "Can't create TCP/IP socket (-1)"
I'm using SqlAlchemy ORM which use the next configuration:
create_engine('mysql+mysqldb://root@ip/database')
and locally works but when i deploy the application to appengine doesn't work.
Thanks