Skip to content Skip to sidebar Skip to footer

Installing Sqlite3 On An External Device Without Emulator

I am a student and I want to learn about using sqlite3 on android. My friend tried to run the android emulator and start typing commands adb -e shell, su, navigated through the emu

Solution 1:

For future students I'll answer this question

Download here compiled sqlite3 for android

push to the device via adb push sqlite3 /data/local/tmp

give permission to execute via adb shell && cd /data/local/tmp && chmod +X sqlite3

and run

/data/local/tmp/sqlite3 /data/data/com.app/databases/some_database.db "SELECT name FROM sqlite_master WHERE type='table'"


Post a Comment for "Installing Sqlite3 On An External Device Without Emulator"