Update


@Target(allowedTargets = [AnnotationTarget.FUNCTION])
@Retention(value = AnnotationRetention.BINARY)
public annotation Update


Marks a method in a Dao annotated class as an update method.

The implementation of the method will update its parameters in the database if they already exists (checked by primary keys). If they don't already exists, this option will not change the database.

All of the parameters of the Update method must either be classes annotated with Entity or collections/array of it.

Example:

@Dao
public
interface MusicDao {
@Update
fun updateSong(song: Song)

@Update
fun updateSongs(songs: List<Song>): Int
}

If the target entity is specified via entity then the parameters can be of arbitrary POJO types that will be interpreted as partial entities. For example:

@Entity
data class Playlist (
@PrimaryKey(autoGenerate = true)
val playlistId: Long,
val name: String,
@ColumnInfo(defaultValue = &qu
ot;") val descriptio
n: String, @ColumnInfo(defaultValue =
"normal") v
al category: String, @ColumnInfo(defaultValue =
"CURRENT_TIMESTAMP"
;) val createdTime: String, @ColumnInfo(defau
ltValue = "CURRENT_TIMESTAM
P

") val lastModifiedTi
me: String)data class P
laylistCategory ( val
playlistId: Long, val categor
y

: St
ring, val lastModifiedTime: S
tring)@Daopublic interface Playlist
Dao { @Update(entity = Playlist::class) fun up
dateCategory(varargs category: Category)}
See also
Insert
Delete

Summary

Public constructors

Update(@NonNull KClass<@NonNull ?> entity, int onConflict)

Public methods

final @NonNull KClass<@NonNull ?>

The target entity of the update method.

final int

What to do if a conflict happens.

Public constructors

Update

Added in 2.8.4
public Update(@NonNull KClass<@NonNull ?> entity, int onConflict)

Public methods

getEntity

public final @NonNull KClass<@NonNull ?> getEntity()

The target entity of the update method.

When this is declared, the update method parameters are interpreted as partial entities when the type of the parameter differs from the target. The POJO class that represents the entity must contain a subset of the fields of the target entity along with its primary keys.

Only the columns represented by the partial entity fields will be updated if an entity with equal primary key is found.

By default the target entity is interpreted by the method parameters.

Returns
@NonNull KClass<@NonNull ?>

the target entity of the update method or none if the method should use the parameter type entities.

getOnConflict

@OnConflictStrategy
public final int getOnConflict()

What to do if a conflict happens.

Use OnConflictStrategy.ABORT (default) to roll back the transaction on conflict. Use OnConflictStrategy.REPLACE to replace the existing rows with the new rows. Use OnConflictStrategy.IGNORE to keep the existing rows.

Returns
int

How to handle conflicts. Defaults to OnConflictStrategy.ABORT.