JetPack之Room

官方Room地址:https://developer.android.google.cn/jetpack/androidx/releases/room 

介绍:

        Room 持久性库在 SQLite 的基础上提供了一个抽象层,让用户能够在充分利用 SQLite 的强大功能的同时,获享更强健的数据库访问机制。

        它是一个ORM库(Object Relational Mapping)

具体使用:

1. 添加依赖

2. 创建三个类 

     A:FamilyDao

    B:FamilyEntity

    C:TestDatabase

你可能感兴趣的:(JetPack之Room)