I'm developing an android app using Cordova in which i have over 3000 long texts (each fits in about 5 pages in Microsoft Word). I want to know which storing system is the best for storing such huge data.
Sqlite,HTML 5 local storage, or Android local data store APIs, or something else maybe?
EDIT
Considering W3Schools and this question HTML 5 local storage is out, due to its limitations. I'm looking for a storage system which at least be able to store 500 MB.
i think that using SQLite Database will be a good choice, but if you have a realy huge data, the best choice is to use MySQL or Oracle Database on a web server, and then develop REST APIs to communicate with the app. Here is a tutorial about Using Android SQLite Database With Multiple Tables