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
- Activirty
- compose
- 최댓값 최솟값
- github action
- 브론즈 1
- 백준
- .github
- capitalize
- kotlin
- LazyColumn
- 실버 4
- 피보나치 수 2
- Myungpyo Shim
- 데이터베이스
- DB 기능
- Android
- suspend programming
- keystore
- 데이터베이스 첫걸음
- 개발하는 정대리
- 성빈랜드
- 브론즈1
- 2레벨
- 프로그래머스
- navigation component
- DB
- LazyRow
- Bitrise
- 실버2
- gradlew
Archives
- Today
- Total
목록kotlin (9)
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:roo..
Android
2021. 2. 19. 20:51