Skip to content

SpatialInteractive/sqlite4java-custom

Repository files navigation

libsqlite4java-custom

This is a fork of the sqlite3 java wrappers from here:

I recommend you go to that project for anything real. I created this project because the default build of sqlite was not sufficient and I found the build system to be a little too brittle to do what I wanted. In the custom/ directory is a custom and build file that builds a custom jar and binary.

Again, this is for my own uses. Others are recommended to see the original project.

Extension Loading

This version enables the SQLite RTree extension and adds a couple of entry points to enable extension loading. This is necessary in order to load SpatiaLite.

In order to load SpatiaLite (assuming you have it built and lying around somewhere - ie. 'brew install spatialite'):

SQLiteConnection db=new SQLiteConnection(new File("test.db"));
db.open(true);
db.enableLoadExtension(true);

The key is to call the enableLoadExtension method on the database to enable the extension loading mechanism. Then you have two options:

db.exec("select load_extension('/usr/local/lib/libspatialite.dylib')");

or

db.loadExtension("libspatialite.dylib", null);

Thread Confinement

The original version used "thread confinement" reminiscent of Microsoft's old COM apartment threaded model. Connections could only be used from threads that created them. We're all adults here. I took this out. I may add use of sqlite mutexes around Java critical sections in the future. SQLite is thread safe and the wrapper should be too. I'll probably also remove the statement cache. I want a direct mapping to the sqlite api and no extra stuff going on.

Building

The build system was stripped down substantially so that I could hack on the options. Currently, there is only a makefile for osx, but adding others should be trivially easy and mainly involves getting the paths setup right. You are expected to bring your own swig to the party.

cd custom
ant dist

The jar and native library will be put into custom/build/dist. Test that it loads properly by running: java -jar build/dist/sqlite4java-custom.jar

About

Provides custom sqlite4java building

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published