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
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.