How would I connect to a MySQL database back-end from an Android device's application?

270 Views Asked by At

I have developed a standalone JavaFx application in Netbeans with a MySQL database back-end which I want to also package as an APK package for running on Android. How would I go about porting the MySQL database script it uses to Android?

1

There are 1 best solutions below

8
On BEST ANSWER

Not sure what do you mean my packaging a JavaFx App as an apk. Other than that, if you plan to use the mySQL in your Android app, simply replicate the MySQL schema to Android SQLite and work with it.