I know AppEngine application runs in a restricted "sandbox" environment so that it can access limited resources like
request execution time limit 60 sec (which is for speed optimization purpose)
read from external file but can not write ,etc
AppEngine provides a good high replication Datastore ,which is so good to store data but it is hard to mange number of quires to perform simple operation like insert, update, delete and update as it uses NoSql(basically jpa and jdo).
Because of this we decide to go with Mysql,I know google itself provide cloud sql instance which uses Mysql5.6 ,I searched alot on SO and in some post I found that it is possible with some restriction while some post says it is not possible because of limitation of sandbox environment,so it is confusing .
During development one can use local mysql instance as detail provide on this link ,but we want to use External mysql instance which is hosted on ourserver
It possible use Dedicated (External/Local) MySql server with app engine(for production not for development)?
thanks in advance!!!!!!