I want to make a system with local mysql server on a desktop, however without using PHP or ASP . Then the android would make the direct connection. It's possible? Thank you.
I want to make a system with local mysql server on a desktop, however without using PHP or ASP . Then the android would make the direct connection. It's possible? Thank you.
For this to work you need a communication interface between your application and the database.
This is because MYSQL does not solve the issue of information transport, just the storage of it.
To run locally as you want, however, you'll need an API that will do the middle field between Android and Mysql.
One alternative, however, I do not know to speak much, is you store the data in some service. Search for DBaaS. Firebase is an example, but will be remote and not local.