I created a database in Android using below line of code-
SQLiteDatabase sampleDB = this.openOrCreateDatabase("SAMPLE_DB_NAME", MODE_PRIVATE, null);
Now, i want to know what would be the Uri for this database or how to find the Uri of the created database.Please help me out.
Thanks in Advance Manoj