I have found in this site many questions asking how to open a database file located in the assets folder. Always the main point of the - correct - answer is the same: databases located in assets cannot be opened since such folder (as the entire content of the APK) is read only. Therefore the database file need to be copied somewhere else before it can be used ( Ship an application with a database ).
However, what if the database file in fact does not have to be modified ?. In that case it does not matter the restriction that the assets folder is read only.
Then my questions is:
Is there a way to open a read only database in the assets folder without copying it first to another location ?