Search code examples
sqliterelational-databasetriplestore

Converting a SQLite Database to a triple store


Can somebody please describe the steps neccessary to convert a SQLite Database to a triple store?

Is there a tool that can accomplish the task?


Solution

  • This is a more complicated question then it seemed when I asked it, but the simple answer is that you normalize your database completely. After it is completely normalized each table stands for a predicate, one columns values represent the subject and one columns values represent the object. You can convert an arbitrary sql database to a triplestore on this basis.