gpt4 book ai didi

java - 连接到 SQLite 数据库失败

转载 作者:行者123 更新时间:2023-11-30 05:57:57 29 4
gpt4 key购买 nike

我试图在 Java Applet 中访问我的 SQLite3 数据库。当我运行我的代码连接到数据库时,出现此错误找不到适合 a.db 的驱动程序,我该如何解决?

现在我不完全确定我是否真的安装了正确的驱动程序...我会告诉你我做了什么 & 你能告诉我我还需要做什么才能让 Eclipse IDE 找到 SQLitejdbc 驱动程序吗:

  • BK info: On windows 7, using Eclipse Helios Java
  • I have a SQLite3 database created in python & I want to read it in my Java Applet
  • I have downloaded the file sqlitejdbc-V056.jar from http://www.zentus.com/sqlitejdbc/
  • Then I copied & pasted the above file to the paths C:\Program Files\Java\jre6\lib & C:\Program Files\Java\jre6\lib\ext
  • Run the following code in a Java Applet & get an exception thrown with the text: "No suitable driver found for a.db"
Class.forName("org.sqlite.JDBC");
Connection conn = DriverManager.getConnection("a.db"); // exception thrown here

任何信息都会很有帮助。我需要将驱动程序导入到我的 Eclipse 项目中吗?

最佳答案

试试这个:-

Class.forName("org.sqlite.JDBC");
Connection conn = DriverManager.getConnection("jdbc:sqlite:a.db");

关于java - 连接到 SQLite 数据库失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4917855/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com