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
- shotcut
- ExifInterface
- BottomSheetDialog
- ChromeCustomTab
- 403 Error
- room
- skipcollapsed
- ActivityResultContracts
- Plugins
- itemAnimator
- kdoc-generator
- webview
- circlecrop
- App Startup
- 이미지 gps
- LOG
- datastore
- onReceivedSslError
- Blinking
- requestPermission
- application
- onResume
- notification bar
- notification setting
- prettyJson
- navigation component
- Android
- Git
- jsontokotlinclass
- notification
Archives
- Today
- Total
Debbi Story
Room Insert시 rowId 얻기 본문
728x90
developer.android.com/training/data-storage/room/accessing-data?hl=ko
Room 데이터베이스에 Insert 했을때 rowId를 반환 받을 수 있는데요.
@Insert(onConflict = OnConflictStrategy.REPLACE)
suspend fun insertTask(task: TodoEntity): Long
return값을 Long 타입으로 해주시면 됩니다.
참고로 onConflict는 기본키 충돌시 처리 방식을 설정하는것 인데요.
OnConflictStrategy.REPLACE 이 옵션은 같은 id로 Insert시 데이터가 이미 있다면 덮어쓴다는 의미입니다.
기본값은 OnConflictStrategy.ABORT 입니다.
'안드로이드 > Tip' 카테고리의 다른 글
Navigation Component data전달하기 (0) | 2020.11.10 |
---|---|
Custom Notification bar 만들기 (0) | 2020.10.28 |
BottomSheetDialogFragment background 설정하기 (0) | 2020.09.10 |
DataBinding으로 layout_weight 값 적용하기 (0) | 2020.08.21 |
ViewPager2의 notifyDataSetChanged() 안될 때 (0) | 2020.08.18 |