Most voted "android-room" questions
4 questions
Sort by count of
-
1
votes1
answer51
viewsCounting records with Room and Livedata in android studio
How I call this function in viewmodel adapter: @Query("select * from PRODUTO") int getCountProdutos(); My viewmodel: public class ProdutoListViewModel extends AndroidViewModel { private final…
-
1
votes1
answer311
viewsError implementing Room Persistence Library + Kotlin
When trying to run an application developed in Kotlin with ROOM Persistence Library I have the following return: java.lang.Runtimeexception: cannot find implementation for…
-
1
votes0
answers55
viewsCreation of tables Sqlite(Room) on Android with the standard Repository (very simple question.. but I need a clarification)
Guys I have a question in the creation of tables and another in the issue of Repository, so come on. EX: data class Carro( val marca: Marca, val motor: Motor ) data class Marca( val nome: String )…
-
0
votes0
answers32
viewsHow to use 2 databases using Room Sqlite?
Hello. Is it possible to use multiple DB using Sqlite Room? In my case I need to use 2 DB if it is possible to switch from DB1 to DB2 dynamically?