SlideShare a Scribd company logo
Data persistence in
Android
with Room library
Dmitry Dogar, Android developer
World before Room
World before Room
• Boilerplate code
World before Room
• Boilerplate code
World before Room
•Difficult migrations
World before Room
•Difficult migrations
World before Room
• Hard to test
Solutions
3d-party ORM libraries over SQLite like:
• DBFlow
• Requery
• GreenDAO
• And so on, many of them!
Solutions
…OR even replacement for SQLite like
Google I/O 2017
Adding to project
Release notes: 1.0.0 - November 6, 2017
Room structure
Entity
Entity
Note: need getters & setters, not support for Lombok, AutoValue
Another Entity
Relation
Object references - not supported
From doc - Key takeaway: Room disallows object references between entity
classes. Instead, you must explicitly request the data that your app needs.
Relation
Embedding
Data types
Date - unknown type, requires converting
Data types
Should be added to database object
Database object
Database object
DAO
• QUERY
• INSERT
• UPDATE
• DELETE
DAO
- Need to write SQL queries, not typical for ORMs
- Retrofit style
DAO
DAO - code generation
DAO - code generation
DAO - Threading
• QUERY
• INSERT
• UPDATE
• DELETE
All Synchronous
DAO - Threading
• QUERY
• INSERT
• UPDATE
• DELETE
All Synchronous
Caused by: java.lang.IllegalStateException:
Cannot access database on the main thread since it may
potentially lock the UI for a long periods of time.
DAO - Threading
Quick, but not good fix
DAO - LiveData
DAO - RxJava
DAO - RxJava
DAO - RxJava
DAO - RxJava
DAO - Query, Joins
@Dao
public interface MyDao {
    @Query("SELECT * FROM book "
           + "INNER JOIN loan ON loan.book_id = book.id "
           + "INNER JOIN user ON user.id = loan.user_id "
           + "WHERE user.name LIKE :userName")
   public List<Book> findBooksBorrowedByNameSync(String userName);
}
From official documentation:
DAO - Query, Joins
Another way:
DAO - Query, Joins
Another way:
DAO - Query, Joins
Another way:
Testing
Testing
Testing
Testing
Testing
RxJava’s Flowable
Similar with LiveData
Testing
More real-life example UnitTest
Testing
More real-life example UnitTest
Migrations
Migrations
Migrations
Migrations
Update version
Migrations
Update version
Migrations
Provide migration
Migrations
Provide migration
Add it to db object
Migrations
Migrations execution
Migrations
Migrations execution
Shortest path
Migrations Testing
Migrations Testing
Setup
• Turn on schema export (as json file)
• In build.gradle: Set schema location to tests
• Export schema for annotation processor
Migrations Testing
@RunWith(AndroidJUnit4.class)
public class MigrationTest {
    private static final String TEST_DB_NAME = “test_employee_db”;
    @Rule
    public MigrationTestHelper helper;
    public MigrationTest() {
        helper = new MigrationTestHelper(InstrumentationRegistry.getInstrumentation(),
                EmployeesDatabase.class.getCanonicalName(),
                new FrameworkSQLiteOpenHelperFactory());
    }
Migrations Testing
  @Test
    public void migrate1To2() throws IOException {
        SupportSQLiteDatabase db = helper.createDatabase(TEST_DB_NAME, 1);
insertEmployee(db); // need to insert with ContentValues SQLIte API
  helper.runMigrationsAndValidate(TEST_DB_NAME, 2, true, MIGRATION_1_2);
And then build db object, get Data from DAO and write asserts
Summary
• Removes ugly boilerplate low level APIs code
• Google support
• Nice testing and RxJava2 support
• Use it if you need it
Links
• https://medium.com/@florina.muntenescu
Florina Muntenescu blogs
Aleksander Piotrowski, Talk at GDGDevFest 2017
Is there a room for Room?
• https://www.youtube.com/watch?v=BHiKSnOaoh4
• https://goo.gl/dNYY3S
Florina Muntenescu talk at realm.io
And official doc
• https://developer.android.com/training/data-storage/room/index.html
Thank you!

More Related Content

PDF
Kotlin for Android Development
PPTX
Broadcast Receiver
PPT
Shared preferences
PPTX
AAC Room
PDF
Firebase
PPTX
SQLite database in android
PPTX
Android Services
PDF
Introduction to kotlin
Kotlin for Android Development
Broadcast Receiver
Shared preferences
AAC Room
Firebase
SQLite database in android
Android Services
Introduction to kotlin

What's hot (20)

PPTX
Getting started with Docker
PPTX
jQuery
PPTX
Introduction to Maven
PDF
Understanding the Android System Server
PPT
Spring Core
PPTX
What Is Docker? | What Is Docker And How It Works? | Docker Tutorial For Begi...
PDF
Android graphics
PPTX
Introduction to Spring Framework
PPT
Android lifecycle
PPTX
PPTX
Spring Framework
PDF
Spring Framework - AOP
PPTX
Tìm hiểu và triển khai ứng dụng Web với Kubernetes
PPTX
Introduction to Firebase
PDF
Docker and the Linux Kernel
PPTX
React hooks
PPT
Docker introduction
PPT
PPTX
Introduction to android
PDF
Android Development with Kotlin, Part 1 - Introduction
Getting started with Docker
jQuery
Introduction to Maven
Understanding the Android System Server
Spring Core
What Is Docker? | What Is Docker And How It Works? | Docker Tutorial For Begi...
Android graphics
Introduction to Spring Framework
Android lifecycle
Spring Framework
Spring Framework - AOP
Tìm hiểu và triển khai ứng dụng Web với Kubernetes
Introduction to Firebase
Docker and the Linux Kernel
React hooks
Docker introduction
Introduction to android
Android Development with Kotlin, Part 1 - Introduction
Ad

Similar to Data Persistence in Android with Room Library (20)

PDF
A evolução da persistência de dados (com sqlite) no android
PDF
MobiConf 2018 | Room: an SQLite object mapping library
PDF
Android Jetpack: Room persistence library
PDF
Green dao
PDF
Slide_For_GDGKL_devfest_2019
PDF
Painless Persistence in a Disconnected World
PDF
Realm: Building a mobile database
PPTX
GAAD Database presentation
PDF
Android local databases
PPTX
12_Data_Storage_Part_2.pptx
PPTX
Android Training (Storing data using SQLite)
PPTX
Android Architecture Components - Guy Bar on, Vonage
PDF
No sql databases blrdroid devfest 2016
PPT
Object Relational model for SQLIite in android
PDF
greenDAO
PDF
Infinum Android Talks #02 - ActiveAndroid
PPTX
NoSQL Endgame - Java2Days 2020 Virtual
PPTX
GreenDao Introduction
PDF
Android Data Persistence
PDF
Introduction to Datastore
A evolução da persistência de dados (com sqlite) no android
MobiConf 2018 | Room: an SQLite object mapping library
Android Jetpack: Room persistence library
Green dao
Slide_For_GDGKL_devfest_2019
Painless Persistence in a Disconnected World
Realm: Building a mobile database
GAAD Database presentation
Android local databases
12_Data_Storage_Part_2.pptx
Android Training (Storing data using SQLite)
Android Architecture Components - Guy Bar on, Vonage
No sql databases blrdroid devfest 2016
Object Relational model for SQLIite in android
greenDAO
Infinum Android Talks #02 - ActiveAndroid
NoSQL Endgame - Java2Days 2020 Virtual
GreenDao Introduction
Android Data Persistence
Introduction to Datastore
Ad

Recently uploaded (20)

PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
CHAPTER 2 - PM Management and IT Context
PPTX
ai tools demonstartion for schools and inter college
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
Transform Your Business with a Software ERP System
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
L1 - Introduction to python Backend.pptx
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Nekopoi APK 2025 free lastest update
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Softaken Excel to vCard Converter Software.pdf
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Design an Analysis of Algorithms II-SECS-1021-03
CHAPTER 2 - PM Management and IT Context
ai tools demonstartion for schools and inter college
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Which alternative to Crystal Reports is best for small or large businesses.pdf
Design an Analysis of Algorithms I-SECS-1021-03
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Transform Your Business with a Software ERP System
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
wealthsignaloriginal-com-DS-text-... (1).pdf
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
L1 - Introduction to python Backend.pptx
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Nekopoi APK 2025 free lastest update
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Operating system designcfffgfgggggggvggggggggg
2025 Textile ERP Trends: SAP, Odoo & Oracle

Data Persistence in Android with Room Library