SQLite driver not found with OrmLite

Hi, I am trying to use Ormlite with a sqlite database and it just doesn't work and I don't know why.

Here is my code:
Class.forName("org.sqlite.JDBC");

String databaseUrl = "jdbc:sqlite:data.db";
connectionSource = new JdbcConnectionSource(databaseUrl);

pom.xml
        <dependency>
            <groupId>org.xerial</groupId>
            <artifactId>sqlite-jdbc</artifactId>
            <version>3.46.1.3</version>
            <scope>compile</scope>
        </dependency>
2CA41C20-39BB-450D-90BB-9459BB526D02.png
Was this page helpful?