If I have a mysql database file generated from a third party tool, can I include that in my app and access it? Any helpful link will be great.
I want to generate some mysql tables and include them in the app. Is there some tool out there that I can use to populate the tables? Like excel that can be used for populating the tables and then the file is included in the corona app and accessed from within in.
If you’re using Corona SDK (not Enterprise), then we include SQLite 3 as the database for internal app use. You also can use network.request() to make server based PHP calls (or other scripting language) using a REST like HTTP requests and have those scripts interface with your hosted MySQL database.
If you’re using Corona Enterprise then it’s possible that Apple and/or Google provide an SDK/Framework/Library that can be used to include an embedded MySQL database. Since apps only have access to their sandbox you really can’t run a MySQL server on a mobile device.
If you’re using Corona SDK (not Enterprise), then we include SQLite 3 as the database for internal app use. You also can use network.request() to make server based PHP calls (or other scripting language) using a REST like HTTP requests and have those scripts interface with your hosted MySQL database.
If you’re using Corona Enterprise then it’s possible that Apple and/or Google provide an SDK/Framework/Library that can be used to include an embedded MySQL database. Since apps only have access to their sandbox you really can’t run a MySQL server on a mobile device.