I need to be able to perform a some operations that would be easily done with SQLiteDatabase
but I'm using Room
. Is there a way for me to get an instance of a SQLiteDatabase
object for that Room
database? I've already tried the RoomDatabase
object but the operations available are pretty limited compared to SQLiteDatabase
.
RoomDatabase
has getOpenHelper()
, which returns a SupportSQLiteOpenHelper
. As with SQLiteOpenHelper
, SupportSQLiteOpenHelper
offers getReadableDatabase()
and getWritebleDatabase()
methods. Those return a SupportSQLiteDatabase
.
SupportSQLiteDatabase
is not identical to SQLiteDatabase
, but it is close, and it is supported by more SQLite implementations than just the framework SQLite.