我可以在IntelliJ-idea的数据源中从SQLite获取数据吗?

时间:2018-02-07 11:52:10

标签: java sqlite intellij-idea

我是java编程语言的新手,我在IntelliJ-idea的数据源中使用SQLite数据库。
我想在java中连接Sqlite但无法连接。 如何解决这个问题?

Database

Data source & Drivers

Data source & Drivers

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

0 个答案:

没有答案