xerial/sqlite-jdbc

Cannot use driver in netbeans with version higer than 3.42.0.1

Tran-Hong-Quan opened this issue · 2 comments

I was trying to connect to my sqlite database using
Class.forName("org.sqlite.JDBC");
String url = "jdbc:sqlite:myDB.db";
conn = DriverManager.getConnection(url);
It works fine on version equal or lower than 3.42.0.1, but not on higher version
image

You need to include slf4j

I added slf4j.jar to the project but it still doesn't work. I think I will use the older version because my main purpose is just to study
image