You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by Apache Wiki <wi...@apache.org> on 2016/02/19 02:49:16 UTC

[Tika Wiki] Update of "SQLite Parser" by TimothyAllison

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tika Wiki" for change notification.

The "SQLite Parser" page has been changed by TimothyAllison:
https://wiki.apache.org/tika/SQLite%20Parser

New page:
= 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 [[http://mvnrepository.com/artifact/org.xerial/sqlite-jdbc|jar]] from Maven central.