http://www.sqlite.org/rtree.html says that the r*tree is "included as part of the amalgamation but is disabled by default" and to enable it "simply compile with the SQLITE_ENABLE_RTREE C-preprocessor macro defined"

Well I want to use R-trees in my android app, but clearly SQLite is all pre-installed etc. Is there a way to enable it on a user's phone/device?

Alternatively, is it possible to use the NDK and the freely available source code for SQLite?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can absolutely compile your own version of SQLite. We do this in order to enable the encryption/codec modules from wxSQLite. Take a look at the SQLite source in the Android Git repository. Basically it's as easy and creating a Android.mk with the options (such as SQLITE_ENABLE_RTREE) you'd like enabled. Of course, this will give you a native library. In order to use it you'll need to access it from the NDK or create a wrapper (again, you can look at the Android repository and Java/JNI wrappers to SQLite)

link|improve this answer
This is what I ended up doing, but still it seems silly to have SQlite installed twice on each user's device – James Coote Jun 2 '11 at 10:41
I have to ask... doing the same thing here. Built the sqlite3 native no issues there. You have any links to the JNI wrappers to SQLite? I am kinda hoping not to have to write the wrapper from scratch. – George Dec 14 '11 at 15:13
@George: We use SQLite in our native code with a C++ wrapper and never directly from Java -> JNI, sorry. – NuSkooler Dec 15 '11 at 22:06
@NuSkooler I realize you wrote this comment 10 months ago, but could you elaborate on how you distribute your SQLite build? Do users need root access? Can you just ship it with the rest of the app? – Justin Apr 21 at 16:30
Basically we have a pre-built .db file shipped as a resource in the APK that is extracted at first run. From there we download and execute additional scripts (we have a fairly large data set). All DB access is in pure C++ (accessed via Java->JNI) No, users do not need root -- you have full access to your app's data directory. – NuSkooler Apr 21 at 17:37
feedback

This worked for me, extract from Android.mk file. It is for spatialite, sqlite spatial extension.

include $(CLEAR_VARS)
# -DOMIT_GEOS=0
# ./configure --build=x86_64-pc-linux-gnu --host=arm-linux-eabi
LOCAL_MODULE    := spatialite
LOCAL_CFLAGS    := -D__ANDROID__ -Dfdatasync=fsync -DOMIT_GEOCALLBACKS -DSQLITE_ENABLE_RTREE
LOCAL_LDLIBS    := -llog 
LOCAL_C_INCLUDES := \
    libiconv-1.13.1/include \
    libiconv-1.13.1/libcharset/include \
    geos-3.2.2/source/headers \
    geos-3.2.2/capi \
    proj-4.6.1/src
LOCAL_SRC_FILES := \
    ./libspatialite-amalgamation-2.4.0/spatialite.c \
    ./libspatialite-amalgamation-2.4.0/empty.cpp \
    ./libspatialite-amalgamation-2.4.0/sqlite3.c
LOCAL_STATIC_LIBRARIES := iconv proj geos
include $(BUILD_STATIC_LIBRARY)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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