kanathiny
kanathiny

Reputation: 81

RDF databases on Android

I'm working on a project on mobile RDF databases for Android. Therefore I'm looking for open source databases to include in my Android project. However, it's difficult for me to find mobile versions of existing RDF databases.

What I've found so far:

Unfortunately I haven't found mobile versions of Sesame, Virtuoso, AllegroGraph, etc.

Does anyone know some other RDF databases for Android?

Upvotes: 6

Views: 1724

Answers (3)

tuned
tuned

Reputation: 1125

I am taking a look to Triple Place.

a light weight and flexible Triple Store for Android. It uses a indexing structure similar to the one in Hexastore. TriplePlace uses TokyoCabinet as persistent storage system.

You can find a brief presentation of its features here.

Upvotes: 1

alganet
alganet

Reputation: 2547

You can use SQLite to store RDF data and make queries for the triples, but SPARQL couldn't be done. Here is a good reference:

http://infolab.stanford.edu/~melnik/rdf/db.html

I would also take a look at 4store.

Upvotes: 0

Jeen Broekstra
Jeen Broekstra

Reputation: 22042

I'm not an Android developer, so perhaps I'm overlooking something, but Sesame comes as a collection of maven modules, each a separate Java jar file. You can pick and choose the jar files you need and as far as I'm aware, you should be able to use them on Android straightaway. I don't think there's any need for a separate "mobile version", is there?

Upvotes: 2

Related Questions