SQLiteParser

NOTE: As of Tika 1.9, the tika-app.jar and the tika-server.jar no longer bundle/include the xerial.org dependency; we moved this to <scope>provided</scope> because it includes native libraries. You need to add that jar/dependency to your project to parse SQLite files!!!

To figure out what version of xerial.org's SQLite-jdbc you need, look at the pom under tika-parsers. Then add the dependency to your project like so:

    <dependency>
      <groupId>org.xerial</groupId>
      <artifactId>sqlite-jdbc</artifactId>
      <version>3.8.10.1</version> 
    </dependency>

or grab the right jar from Maven central.

  • No labels