Download并将SQLite JDBC添加到类路径中。
在它之后,创建一个连接:
Class.forName("org.sqlite.JDBC");
connection = DriverManager.getConnection("jdbc:sqlite:somefilename.db");
如果要指定数据库文件的位置,可以将somefilename.db
替换为somefilelocation\somefilename.db
。
然后使用连接创建Statements和ResultSet以与数据库进行交互。 tutorial中提到了所有内容,@ MadStrogrammer刚刚给了你。