如何解决java.sql.SQLException:找不到适合使用 Ubuntu 和 InteliJ 的 jdbc:sqlite 的驱动程序
有这么多人这样做,几乎是相似的,我在这里 Stackoverlow。我读了二十篇。但我还是要问。
cd ~/ ..... /resources
sudo apt-get install sqlite3 libsqlite3-dev
sqlite3 mydatabase.db
在 Java (intelliJ) 中我得到错误:
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;
我的数据库.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 以获得更具体的版本
,请确保您已下载 sqlite-jdbc jar 文件并将其添加为该模块的库。 Here 是 GitHub 上驱动程序的链接,其中包含在您的模块中实现它的分步说明。
,非常感谢 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
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。