Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- hilt
- lifecycle
- Behavior
- kotlin
- 알림
- recyclerview
- 알고리즘
- CollapsingToolbarLayout
- notification
- Algorithm
- Coroutine
- onMeasure
- 안드로이드
- Navigation
- AppBarLayout
- DataBinding
- View
- Android
- sqlite
- 코틀린
- onLayout
- HTTP
- room
- CoordinatorLayout
- LiveData
- 백준
- ViewModel
- activity
- BOJ
- CustomView
Archives
- Today
- Total
개발일지
Android in A..Z - Room (데이터 미리 채우기) 본문
데이터 미리 채우기
상황에 따라 데이터베이스를 생성할 때 미리 데이터를 채워야 하는 경우나 데이터베이스를 Open할 때 데이터베이스를 조작해야하는 경우가 있다.
데이터베이스에 Callback을 제공하여 이러한 문제를 해결할 수 있다.
AppDatabase
데이터베이스를 생성할 때 addCallback을 사용하여 Callback을 추가할 수 있다.
@Database(entities = [Drawer::class, ToDo::class], version = 2, exportSchema = true)
abstract class AppDatabase : RoomDatabase() {
companion object {
private var instance: AppDatabase? = null
fun getInstance(context: Context): AppDatabase {
return instance ?: synchronized(this) {
Room.databaseBuilder(context, AppDatabase::class.java, DATABASE_NAME)
.addCallback(object : Callback() {
override fun onCreate(db: SupportSQLiteDatabase) {
super.onCreate(db)
CoroutineScope(Dispatchers.IO).launch {
getInstance(context).drawer().insert(
Drawer(name = "ToDo")
)
}
}
})
.addMigrations(MIGRATION_1_2)
.build()
}.also {
instance = it
}
}
private val MIGRATION_1_2 = object : Migration(1, 2) {
override fun migrate(database: SupportSQLiteDatabase) {
database.execSQL("ALTER TABLE ToDo ADD COLUMN isFinished INTEGER DEFAULT 0 NOT NULL")
}
}
}
abstract fun drawer(): DrawerDao
abstract fun todo(): ToDoDao
}
- onCreate : 데이터베이스가 최초로 생성될 때 실행된다.
- onOpen : 데이터베이스를 열 때 실행된다.
- onDestructiveMigration : Migration할 때 실행된다.
Git (예제코드)
github.com/KangTaeJong98/Example/tree/main/Android/Room
'Android (안드로이드) > Room' 카테고리의 다른 글
Android in A..Z - Room (TypeConvert) (1) | 2021.01.17 |
---|---|
Android in A..Z - Room (allowMainThreadQueries) (0) | 2021.01.17 |
Android in A..Z - Room (관계) (0) | 2021.01.17 |
Android in A..Z - Room (Migration) (0) | 2021.01.17 |
Android in A..Z - Room (기본) (0) | 2021.01.17 |
Comments