Infinito Nirone 7

白羽の矢を刺すスタイル

2026-06-01から1ヶ月間の記事一覧

Unique Index があるときの @Insert(onConflict = OnConflictStrategy.REPLACE), @Update, @Upsert

次のような Entity を例に @Insert, @Update, @Upsert の動きを見てみます。 @Entity( tableName = "sample_table", indices = [Index(value = ["unique_id"], unique = true)] ) data class SampleEntity( @PrimaryKey @ColumnInfo(name = "id") val id: St…