skip to Main Content

Dao :

@Insert(onConflict = OnConflictStrategy.REPLACE)
suspend fun insertProducts(dataUser: List<Products>)

i am inserting list of products in the table at a single time …i know whether the all data inserted successfully or not

i tried all the ways like return type of Long ( but it is working only for inserting single item )

Also please tell me the viewmodel code ..that how could i receive the success value or failure value..so that i can process the next step easily

2

Answers


  1. i tried all the ways like return type of Long ( but it is working only for inserting single item ) so

    @Insert(onConflict = OnConflictStrategy.REPLACE)
    suspend fun insertProducts(dataUser: List<Products>): LongArray
    

    If inserting from a List then the returned value is an LongArray, an element per insert. Each will either be a value greater than 0 (inserted) or -1 not inserted.

    Login or Signup to reply.
  2. I think you were close. You are inserting multiple items. So it’s not going to be Long but List<Long>(or Array not sure right now if Room can convert it automatically) (doc).

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search