# sqlite3 /data/data/com.moodme.android/databases/moodme
sqlite3 /data/data/com.moodme.android/databases/moodme
sqlite3: not found
link|improve this question

64% accept rate
feedback

3 Answers

up vote 5 down vote accepted

On the Android emulator, sqlite3 is in /system/xbin. There is no /system/xbin on a Nexus One (Android 2.2). Hence, I suspect that sqlite3 is not installed on the Nexus One.

link|improve this answer
1  
If you install cyanogenmod it has sqlite3 working in the shell. – schwiz Sep 5 '10 at 17:31
But doesn't device need it to create and read sqlite3 databases? Also, if it's not on the Nexus One, is there a way to get it on there? – Julian Sep 5 '10 at 17:32
@Julian: "But doesn't device need it to create and read sqlite3 databases?" -- Why would it? SQLite is a library, attached to an Android app via JNI. sqlite3 is a command-line executable. "Also, if it's not on the Nexus One, is there a way to get it on there?" -- you're welcome to try to find an ARM port and see if you can get it working. I'm dubious that it's really the solution for whatever problem you think you have, though. Android apps don't need it. For development, you can pull the database off your rooted phone and examine it on your development machine. – CommonsWare Sep 5 '10 at 17:44
Ah. Ok. Thanks for explaining. There wasn't really a problem as such. I was just exploring whether it was necessary to always have to "pull' the database to examine it. – Julian Sep 5 '10 at 18:54
1  
@Julian: On the emulator, no. On a device, yes, rooted or not. Also, if you're an Eclipse user, you might want to peek at MOTODEV Studio for Android. I seem to recall they had an integrated SQLite editor for on-emulator databases, and that might work with your rooted phone. Behind the scenes, it probably just does a pull, but it might be more convenient. – CommonsWare Sep 5 '10 at 19:02
show 1 more comment
feedback

As an alternative (may not be secure or even good idea though) you can always upload the sqlite3 binary to /system/bin this worked for me:

First lets mount /system/ to allow read/write (rw)

$ adb shell
# mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system

in another terminal change directory (cd) to where sqlite3 is and lets push it

$ ls
adb.exe   adbmac         AdbWinUsbApi.dll  psneuter            sqlite3            Superuser.apk  su-v2
adblinux  AdbWinApi.dll  busybox           rageagainstthecage  SuperOneClick.exe  su-v1
$ adb push sqlite3 /system/bin

Now back to the other shell lets change the permission of the binary

# chmod 4755 /system/bin/sqlite3

Now lets mount back /system/ as read only (ro)

# mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system

And now we can use sqlite3 from shell:

# sqlite3 /data/data/com.mobisync.android/databases/sync.db
SQLite version 3.6.22
Enter ".help" for instructions
sqlite> .tables
android_metadata  file              sync_status   

Note: I'm using the sqlite3 binary that comes with "SuperOneClickv1.6.5-ShortFuse"

link|improve this answer
Can you please tell me where I can find sqlite3 for NexusOne on Gingerbread? Thank you. – michael Mar 9 '11 at 18:02
That was a really great solution - thanks! – Thorben Apr 14 '11 at 21:38
Would be grat if we could do that inside an application to fix the issue for our users! – Profete162 Sep 27 '11 at 17:41
feedback

From the answer of evelio, I had problem to push the sqlite3 file to /system/bin. So, instead, I have pushed it to the /sdcard.

In this thread I found the right Solution (answer of Kila): How can I install sqlite3 on rooted NexusOne runs Gingerbread

$ adb push sqlite3 /sdcard/

$ adb shell

$ su

# mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system

# dd if=/sdcard/sqlite3 of=/system/bin/sqlite3

# chmod 4755 /system/bin/sqlite3

# mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system

It works on my Samsung Galaxy S II with 2.3.3

link|improve this answer
Works on rooted Nexus-S running Android ICS 4.0.4 using the sqlite3 binary from SuperOneClick (shortfuse.org/?page_id=2 / download.cnet.com/SuperOneClick/3000-2094_4-75447027.html) – Chris Blunt May 14 at 12:51
feedback

Your Answer

 
or
required, but never shown

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