Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the version of SQLite used in Android?

Reason: Im wondering how to handle schema migrations. The newer SQLite versions support an "ALTER TABLE" SQL command which would save me having to copy data, drop the table, recreate table and re-insert data.

share|improve this question
You still might want to copy-drop-recreate-reinsert; SQLite's ALTER TABLE isn't very full-featured. – J. Polfer Apr 28 '10 at 22:42
Please choose the correct answer, 3.4.0 is not right – Noah Jan 19 '11 at 1:24
Doesn't that depend on the version of Android you're running though? I might indeed have SQLite 3.4.x on my old myTouch running 1.6 OR I might have a higher version on my new G2 running 2.2. The true answer is to check for your particular handset. – Eno Jan 21 '11 at 19:06
2  
Was an answer ever accepted here Eno? Seems like Mark's wins to me! – Gray Mar 23 '12 at 21:59

3 Answers

Using the emulators (adb shell sqlite3 --version):

Note - Android SDK level links show where the android.database.sqlite package has changed. Where there is no link (e.g. SDK level 17), indicates no changes to that package.

SQLite 3.7.11:

  • 17-4.2-Jelly Bean
  • 16-4.1-Jelly Bean

SQLite 3.7.4:

  • 15-4.0.3-Ice Cream Sandwich
  • 14-4.0-Ice Cream Sandwich
  • 13-3.2-Honeycomb
  • 12-3.1-Honeycomb
  • 11-3.0-Honeycomb

SQLite 3.6.22:

  • 10-2.3.3-Gingerbread
  • 9-2.3.1-Gingerbread
  • 8-2.2-Froyo

SQLite 3.5.9:

  • 7-2.1-Eclair
  • 4-1.6-Donut
  • 3-1.5-Cupcake

There are also several other SQLite versions out there (list by no means exhaustive):

SQLite 3.7.6.3:

  • LG Optimus Sol E730/myTouch E739/myTouch Q C800 (10-2.3.3-Gingerbread, GRJ22)
  • LG Optimus Vu F100S (10-2.3.3-Gingerbread, RK39F)
  • LG Optimus LTE TAG F120K/F120L (10-2.3.3-Gingerbread, GRK39F)
  • LG Optimus LTE L-01D (10-2.3.3-Gingerbread, GRJ90)
  • LG Optimus Net P690b (10-2.3.3-Gingerbread, GINGERBREAD)
  • LG Prada KU5400 (10-2.3.3-Gingerbread, GWK74)
  • LG Prada P940 (10-2.3.3-Gingerbread, GWK74)
  • LG LU6200/SU640 (10-2.3.3-Gingerbread, GRJ90)

SQLite 3.7.0.1:

  • LG Esteem MS910 (10-2.3.3-Gingerbread, GSE-_v.05)
  • AndroTab (8-2.2-Froyo, 1.0.7100.0385)
  • GPLUS MUSN M500 (8-2.2-Froyo, FRG83G)

SQLite 3.6.23.1:

  • Motorola Backflip MB300 (7-2.1-Eclair, ERD79)
  • Garmin-Asus nüvifone A10/A50/Garminfone (7-2.1-Eclair, ERE27)

Note: adb command to get SQLite version only works on emulators and on devices with sqlite3 available: http://stackoverflow.com/a/3645800/444761

For other devices, see Juri's answer.

share|improve this answer
3  
Thank you for posting the Android versions instead of leaving the reader assuming the Android build. I'll stick with 3.5.9 for compatibility. – Qix Sep 7 '11 at 6:37
Thanks! Since I'm using foreign keys, I'll have to require level 8. That would exclude the nüvifone though, oh well. – user999717 Nov 2 '11 at 14:04
/system/bin/sh: sqlite3: not found This is on rooted Android 4.0.2 device – mice May 21 '12 at 12:35
1  
+1 for being so exhaustive...nice work – havexz Aug 12 '12 at 21:23

Although the documentation gives 3.4.0 as reference number, if you execute the following sql, you'll notice that there is a much higher number of SQlite installed:

Cursor cursor = SQLiteDatabase.openOrCreateDatabase(":memory:", null).rawQuery("select sqlite_version() AS sqlite_version", null);
String sqliteVersion = "";
while(cursor.moveToNext()){
   sqliteVersion += cursor.getString(0);
}

This is just a piece of quick, dirty code to retrieve the sqlite version. For instance on a HTC Hero with Android 2.1, I get: 3.5.9.

On my Nexus One with Android 2.2, I even get 3.6.22.

share|improve this answer
1  
I imagine 3.4.0 is given as a minimum version # - for portability you probably shouldn't assume its a higher version unless you have a really good reason to do so. – Eno Sep 2 '10 at 16:42
1  
sure, you're right. But if you have to use some advanced features which may improve performance on higher SQLite versions, you may use the code to query and eventually switch the kind of query depending on the deployed version :) – Juri Sep 2 '10 at 19:01
My Droid with a custom 2.2 ROM also reports 3.6.22 – Austyn Mahoney Dec 31 '10 at 0:45
My Epic with pre-release 2.2 says 3.6.23 -- the numbers seem to be inching upwards. – dhaag23 Jan 12 '11 at 0:52
Nexus 7 with Android 4.2, gives 3.7.11 – christophercotton Dec 4 '12 at 23:44
$ adb shell
$ sqlite3 --version
sqlite3 --version
3.5.9

Same on ADP1 1.6 & 2.1 emulator.

share|improve this answer
It gives me: sqlite3: permission denied – Yar Aug 19 '11 at 12:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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