I’m in my cmd prompt and im adb shell. When I try to run sqlite3 it shows this error. Please help..
cd /system/xbin/sqlite
sh: cd: /system/xbin/sqlite - No such file or directory
1|shell@android:/system/xbin # cd /system/xbin/sqlite3
cd /system/xbin/sqlite3
sh: cd: /system/xbin/sqlite3 - No such file or directory
1|shell@android:/system/xbin #
You are not trying to “run sqlite3”. You are trying to change to a directory — that is what the
cdcommand means in Linux.On an emulator, to run the
sqlite3command from theadb shell, simply typesqlite3, then press<Enter>:Note that the
sqlite3command does not exist on production devices AFAIK.