sqlite3 permission denied android

前端 未结 4 1188
再見小時候
再見小時候 2021-02-13 22:19

I\'m trying to access the database of the application I\'m developping directly on my Nexus, but I get a \"permission denied\" when I tried to execute the \"sqlite3\" command. I

4条回答
  •  耶瑟儿~
    2021-02-13 22:36

    I had a similar problem. I pulled sqlite3 from emulator and pushed in on my device and couldn't run it - permission denied.

    Apparently sqlite3 binary didn't have execute permission (-rw-rw-rw-) so chmod +x sqlite3 solved the issue.

提交回复
热议问题