Conclusion

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

  In this lesson, you learned:

  • The purpose of a Room database.
  • The components of a Room database.
  • How to create a Room database.

You can use Room database to store data locally on your Android device. Room let’s you store structured data such as notes, lists of movies, and songs. Room provides an abstraction layer over SQLite. This makes it easier to work with SQLite databases in Android. Room also allows you to search, update, delete, and insert database records.

See forum comments
Download course materials from Github
Previous: Demo Next: Quiz: Define a Room Database