I recently published a tutorial describing the different available methods to store data locally in an Android app. However, due to article length constraints, I could not adequately cover creating ...
Sometimes, you need to store more complex data in your app than just simple key/value pairs saved with a text file or Shared Preferences. Databases are ideal for storing complex data structures and ...
In this paper, the authors present a method for creating a centralized database which will be used by both Android as well as web application. The Android application will be having its own local ...
Whether you want some quick and dirty data storage, or simply don’t have that heavy requirements for your local database system, SQLite is always a good choice. With its portable single-file approach, ...
SQLite is a database solution that allows you to store data in mobile devices. Android and Apple use SQLite to store data, but you can also use the database on a desktop computer for testing and ...