Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone tell me, is it possible to use the ADB to pull and push a database from an app, without root privaliges on the phone?

For example, I know the location on my rooted magic and dream is:

/data/data/com.xxxx.xxxx/databases/xxxx

I know that you can use ADB without root, but when trying to use the shell - you can't view that location without root privaliges. But I have been told you can use push and pull if you know the file you want?

Basically I want to pull a database from MY app on a non rooted phone modify it and push it back on.

Only trouble I have is, the two phones I have are both root and I don't have access to a non root one to try it out.

share|improve this question
please consider changing your accept to Pilot_51's answer. – Chris Stratton 4 hours ago

3 Answers

up vote 7 down vote accepted

No, it can't be done.

share|improve this answer
Thanks for a quick response, I would score, but don't have enough yet! – Scoobler Jan 17 '10 at 0:59
-1 NOT TRUE See the other answers. Today particularly see Pilot_51's answer, but note that variation of having the app itself set the permission bits was possible even before the run-as command. – Chris Stratton 4 hours ago

A quick workaround is to use the run-as command to copy the database in a folder where you can have access, such as /sdcard and then, do a normal adb pull

adb shell
$ run-as package.name cp /data/data/package.name/dbname.db /sdcard/
$ exit
adb pull /sdcard/dbname.db

More information on the run-as command here

Note that the run-as command is available since API level 8 (Android 2.2) and can only be used if the application is debbugable.

share|improve this answer

While Nilhcem's answer didn't work for me, it lead me in the right direction (for that I upvoted) and I now have a working solution.

adb shell
$ run-as package.name
$ cd ./databases/
$ ls -l #Find the current permissions - r=4, w=2, x=1
$ chmod 666 ./dbname.db
$ exit
$ exit
adb pull /data/data/package.name/databases/dbname.db ~/Desktop/
adb push ~/Desktop/dbname.db /data/data/package.name/databases/dbname.db
adb shell
$ run-as package.name
$ chmod 660 ./databases/dbname.db #Restore original permissions
$ exit
$ exit
share|improve this answer
1  
This is a correct answer for the question asked, where the person wanting to do this is the developer of the app and can install a debug version of it (debug version being a pre-requisite for run-as). Other options include having the app itself change the permission or copy the file to/from the external storage. – Chris Stratton 4 hours ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.