Well, I have the following problem:
- I have a web application with which I want to be able to keep records of 2 tables, which must contain images. I want to save those records (with everything and images) in a MySQL server so that later I can read those records and show their images in an Android application.
The problem is that I must be able to consult the registers even if the Android device I am using does not have an Internet connection, that is, I have to clone the MySQL database in a SQLite database every time the device is connected to it. internet.
Now, as I understand the first thing I should do is create the MySQL server, then connect it to the web app and save the records there, my first question is: What type of data should I use to save the images? So once you clone the database from MySQL to SQLite can read the images in the Android app?
My second question, I do not have the slightest idea of how to clone a MySQL database to SQLite, Could you provide me with an example?
My third question, (which should have been the first): Between the 2 tables I will have an average of 100 to 150 records, that is 150 images (approximately 960x640) SQLite can support saving that number of images?
I hope you can help me, thanks in advance.