I have created and loaded a small database via the SQLite3 command line tool.
I am developing in Eclipse and using the emulator to
test with.
I would like to know what the accepted practice is for where to put the database in my Eclipse Android project folder structure, and how to access it in my
java code.
It would also be good to know how to test for the existence of the database file before trying to open it as I think the method will create it if it doesn't exist and I don't want that.
Thank You in advance to those wishing to reply.
-Chris