我是java编程语言的新手,我在IntelliJ-idea的数据源中使用SQLite数据库。
我想在java中连接Sqlite但无法连接。
如何解决这个问题?
public class SqliteDB {
Connection c = null;
SqliteDB(){
try {
Class.forName("org.sqlite.JDBC");
c = DriverManager.getConnection("jdbc:sqlite:/Users/mac/Documents/Development/Test");
System.out.println("Connection to DB OK !!");
c.close();
}catch (Exception e){
System.out.println("Error:" + e.getMessage());
}
}
public static void main(String[] args) {
SqliteDB db = new SqliteDB();
}
}
我收到了错误...
错误:org.sqlite.JDBC