Android: SQL Rooms - JamesDansie/data-structures-and-algorithms GitHub Wiki

Rooms

Author: James Dansie

Rooms are the way that android interacts with SQL and stores data. This looks somewhat similar to JPA in Spring. There are three major components in a rooms;

  1. Database - the thing that stores all the data
  2. Entity - A table within the database
  3. DAO - the methods for accessing the database

References