Android Studio – Check whether list of items inserted succesfully or not in room table
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…