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.
如何在 ECLIPSE 中连接我的 SQLITE 数据库?我的 sqlite 是 2.o 版本,而 eclipse 有 3.5.9 版本的 sqlite。有什么关系吗?
1) 编写你的数据库代码
2)谷歌“jdbc驱动sqlite”
3) 下载您最喜欢的 Sqlite JDBC 驱动程序(可能是 SqlLite3),并将 .jar 添加到您的项目中
4) 修改您的代码以使用(特定于驱动程序的)JDBC 连接字符串打开所需的驱动程序
5)瞧。完毕 :)