Possible Duplicate:
Share SQLite database between 2 android apps?
I'm trying to work with SQLite databases, open it,retrieve data from it,insert data, I did thit perfectly, but with sqlite databases I created in the same application, but I'm trying to do so with other databases created in other applications.
I tried to open the database like this:
String DB_PATH= "/data/data/my.sqlitemanager/databases/";
String DB_NAME = "commments";
SQLiteDatabase database = SQLiteDatabase.openDatabase(DB_PATH + DB_NAME, null, SQLiteDatabase.OPEN_READONLY);
But it didn't work. How can I do this?