0
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?
0
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?
Browser other questions tagged java android-studio sqlite android-room
You are not signed in. Login or sign up in order to post.
When you call the
databaseBuilder
, one of the parameters is the name of the bank. Pass a different name and you will be using a different bank.– Leonardo Lima
OK @Leonardo Lima, got here, thank you very much friend. this is a valid answer.
– Emerson Barcellos