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 | 31 |
Tags
- navigation component
- 2레벨
- keystore
- 데이터베이스 첫걸음
- 피보나치 수 2
- capitalize
- gradlew
- 프로그래머스
- Bitrise
- 백준
- DB 기능
- 브론즈1
- .github
- 브론즈 1
- Myungpyo Shim
- Activirty
- 데이터베이스
- 성빈랜드
- 개발하는 정대리
- 실버2
- Android
- DB
- github action
- kotlin
- LazyRow
- LazyColumn
- 실버 4
- suspend programming
- compose
- 최댓값 최솟값
Archives
- Today
- Total
plzy의 개발 블로그
[Android] Room 어떻게 써야할까 ? 본문
안녕하세요,오늘 안드로이드 에 쓰이는 데이터베이스 중, Room 에 대해 설명해 드리려고 합니다.
Room 이란 Android 에서 권장하는 NoSQl문으로 Sqllite 대신 Room 쓰는 것을 권장하고 있습니다
Room 에 대해 간략히 설명해드리면
User 데이터베이스 테이블을 담고 있습니다.
UserDao 쿼리를 쓸 수 있는 곳입니다.
AppDatabase 데이터베이스 객체를 담고 있는 곳입니다.
Room 을 사용하려면 먼저 build.gradle 에 추가할 것이 몇 가지 있는데요
dependencies {
def room_version = "2.2.6"
implementation "androidx.room:room-runtime:$room_version"
kapt "androidx.room:room-compiler:$room_version"
// optional - Kotlin Extensions and Coroutines support for Room
implementation "androidx.room:room-ktx:$room_version"
// optional - Test helpers
testImplementation "androidx.room:room-testing:$room_version"
}
를 build.gradle에 복붙 하시면 됩니다.
Entity
테이블 이름을 지정할수 있습니다. 기본 값은 class 이름입니다.
PrimaryKey
기본키를 지정할수 있습니다. 이때 autoGenerate=true를 해주시면 자동으로 key 값을 생성해 줍니다.
@Entity
data class User(
@PrimaryKey val uid: Int,
val firstName: String?,
val lastName: String?
)
}
Qury
Sql Qury문과 똑같이 쿼리문을 작성할수 있습니다.
@Dao
interface UserDao {
@Query("SELECT \* FROM user")
fun getAll(): List
@Query("SELECT * FROM user WHERE uid IN (:userIds)")
fun loadAllByIds(userIds: IntArray): List<User>
@Insert
fun insertAll(vararg users: User)
@Delete
fun delete(user: User)
}
AppDatabase
@Database(entities = {User::class}, version = 1)
abstract class AppDatabase : RoomDatabase() {
abstract fun userDao(): UserDao
}
RoomDB 쓸 액티비티에 이코드를 넣는다. RoomDB를 많이 쓴다면, 메소드 시키는것도 좋은 방법이다.
val db = Room.databaseBuilder(
applicationContext,
AppDatabase::class.java, "UsER"
).build()
'Android' 카테고리의 다른 글
[FIX] Android Studio 먹통일 때 (0) | 2022.01.06 |
---|---|
[Android] Activity life cycle 완벽 분석하기 (0) | 2021.06.29 |
[Android] Android (Singleton pattern) 이란 무엇인가 ? (2) | 2021.03.09 |
[Android] MVVM 패턴이란 무엇인가 (0) | 2021.03.06 |
[Android] ViewPager2 어떻게 써야할까? (0) | 2021.02.21 |