java.sql.SQLException:使用 Ubuntu 和 IntelliJ 找不到适合 jdbc:sqlite 的驱动程序

java.sql.SQLException: No suitable driver found for jdbc:sqlite using Ubuntu and InteliJ

有这么多人问这个,几乎是相似的,我在这里 Stackoverlow。我读了其中的二十篇。但我还是要问一下。

我创建了一个数据库,所以:

cd ~/ ..... /resources
sudo apt-get install sqlite3 libsqlite3-dev
sqlite3 mydatabase.db

在 Java (inteliJ) 中我得到错误:

java.sql.SQLException: 没有找到适合 jdbc:sqlite:resources:mydatabase.db

的驱动程序
    String url = "jdbc:sqlite:resources:mydatabase.db";
    Connection conn = null;
    try {
        conn = DriverManager.getConnection(url);
    } catch (SQLException e) {
        System.out.println(e.getMessage());
    }
    return conn;

mydatabase.db

请将以下条目添加到您的项目pom.xml 的 dependencies

<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
<dependency>
    <groupId>org.xerial</groupId>
    <artifactId>sqlite-jdbc</artifactId>
    <version>3.34.0</version>
</dependency>

检查 here 以获得更具体的版本

非常感谢silentsudo的回答。我试着编辑他的答案,添加一点,然后问他,但他对我来说不再像这样了。

现在他的答案非常好,几乎不需要修改:

Please add the following entry to `dependencies` of pom.xml of your project
<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
<dependency>
    <groupId>org.xerial</groupId>
    <artifactId>sqlite-jdbc</artifactId>
    <version>3.34.0</version>
</dependency>

可能是因为它在 inetliJ 中是红色的。

然后按:文件 > 无效缓存 > 并重新启动 intellij

那么 pom 不应该看起来是红色的。并且它应该工作

检查 here 以获得更具体的版本

in inteliJ you need also to in last step invalid cache and restart intellij

请确保您已下载 sqlite-jdbc jar 文件并将其添加为该模块的库。 Here 是对 GitHub 上的驱动程序的 link,其中包含将其实施到您的模块中的分步说明。