Issue
So, I try to make an application with an SQLite database. I would like to open the database file with SQLite studio on my PC but I cant see the file. This is the path:
string folderpath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal);
I tried to pull to a folder using adb pull data/data/[my.package.name]
but the result was: 0 files pulled.
I've read of the adb root but I still don't know what is it exactly, I'm just a beginner.
Thank you for your help!
Solution
- Root phone.
- Copy the database data file to the mobile phone sdcard: cp (db) (sdcard).
- Open a terminal in the folder of the computer and use: adb pull (sdcard/db) to copy to the computer.
Answered By - Wen xu Li - MSFT
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.