0

I need to find the path that have the database of my application and I need to insert into my android database by SQLlitestudio.... please help

I'm using andriod Studio

thank you

Andrew Emad
  • 277
  • 3
  • 13
  • possible duplicate of [Android - How can I view a sql database created in my app? I'm running it on the Android emulator in Eclipse](http://stackoverflow.com/questions/9846336/android-how-can-i-view-a-sql-database-created-in-my-app-im-running-it-on-the) – Dipen Shah Aug 10 '15 at 20:22
  • I'm using android studio ,,,, how can I access ? – Andrew Emad Aug 10 '15 at 20:25
  • You should really learn how to google http://stackoverflow.com/questions/17529766/see-database-filecontent-via-android-studio – Dipen Shah Aug 10 '15 at 20:27
  • It's in `/data/data/your.app.name/databases/your.db`. – Phantômaxx Aug 11 '15 at 08:26

2 Answers2

1

Here is the path: /data/data/YOUR_PACKAGE/databases/

P.S. May be that link can help: http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/

DH28
  • 553
  • 3
  • 16
0

You can also use DbAndroid plugin for SQLiteStudio ( http://wiki.sqlitestudio.pl/index.php/DbAndroid ), although it's not free.

Googie
  • 5,742
  • 2
  • 19
  • 31