Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要连接到我的文件系统上的数据库,但我注意到 JDBC 指的是内存中的数据库,任何时候我想检查表需要编写代码来检索它们的数据,目前我有一个 SQLite 数据库。我使用了以下代码,但即使我输入了正确的地址,它也无法连接到我的数据库。
String sDriver = "org.sqlite.JDBC"; String Database = "users/documents/DB.sqlite"; String sJdbc = "jdbc:sqlite";
将数据库 (DB.sqlite) 移动到工作目录中。然后使用此 url 连接到它:
jdbc:sqlite:DB.sqlite
使用 JDBC,它将是这样的:
String driver = "org.sqlite.JDBC"; Class.forName(driver); String dbUrl = "jdbc:sqlite:DB.sqlite"; Connection connection = DriverManager.getConnection(dbUrl);