All this searching is giving me a headache...
I can see how to create then open a database, there's loads of examples for that. But I already have my database and I just want to know how to open it from my resources. I put in in /res/raw/database.sqlite.
So I have the line:
SQLiteDatabase db = SQLiteDatabase.openDatabase(PATH_HERE, null, SQLiteDatabase.OPEN_READONLY);
But I don't know what to put for the path.
Any help would be appreciated, thanks!

