
Continue reading “Android Room Persistence Library: Queries and Migration Support”
Continue reading “Android Room Persistence Library: Queries and Migration Support”
Room is an object mapping library that help us, the Android developers, to handle an SQLite database in the Android development. Continue reading “Android Room Persistence Library: Relations”
The past weeks, at Google I/O 2017, the Android team lunched Room Persistence Library, a SQLite object mapper, an ORM just like greenDAO and ORMlite.
Android provides several ways to store user and app data. SQLite is one way of storing the application data, locally, on the device. SQLite supports all the relational database features common on the Oracle databases or Microsoft SQL Server. In order to access this database it must be used the API provided by Android which is available in the android.database.sqlite package.