I use the Room Persistence Library for my Android app, but after it's creation I can not find .sql file with tables on my device.
When I create database through SQLiteOpenHelper
I can see all my tables in folder data on the device, but when I create database through Room there is no file anywhere.
Where can I see the content of all my tables?
Create database code:
@Provides
@Singleton
PokuponDataBase providePokuponDataBase() {
return Room.inMemoryDatabaseBuilder(SuperDealApp.getInstance().getApplicationContext(), PokuponDataBase.class, "PokuponRoomDatabase").build();
}