1.1 SQLite三种JDBC驱动的区别
摘自http://blog.sina.com.cn/s/blog_654337ca01016x4n.html
在DBeaver中看到SQLite有三种JDBC驱动,查了它们官方网站的相关解释,发现它们还是挺不一样的。
1.2 SQLite Xerial Driver 驱动
- 方法1:mips上也使用本地库,下载源代码编译即可。不过编译很费劲,对于不可以联网的单位工作机,根本行不通。
源代码下载地址
- 方法2:使用jdbc的jdbc-odbc桥方式。
第一步:加载驱动(作用是把需要的驱动程序加入内存)
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver")
第二步:得到连接(指定连接到哪个数据源),如果配置数据源时选择的是Windows NT验证方式,则不需写出用户名和密码
Connection ct=DriverManager.getConnection("jdbc:odbc:simpledb")如果有用户名和密码,则在数据源之后写出。
jdk从1.8开始,删除了jdbc-odbc桥,所以odbc的驱动是用不了的,建议重新安装jdk1.7或者更低的版本。此方案行得通,不过强烈要求jdk版本低于1.7或者更低版本,不利于jdk的升级。
JDK7 和 JDK8 貌似都不支持 JDBC-ODBC 桥连,所以最好下个版本 6
- 方法3: 使用纯java的SQLite(Applies to versions before 3.7.15)不包含3.7.15
http://www.java2s.com/Code/Jar/s/Downloadsqlitejdbc372jar.htm本项目的sqlite-jdbc-3.7.2.jar是从此链接下载的,因为下边的链接资源不畅通。
https://bitbucket.org/xerial/sqlite-jdbc/downloads?tab=tags
2、sqlite-jdbc-3.15.1.jar Supported Operating Systems
摘自https://bitbucket.org/xerial/sqlite-jdbc
Since sqlite-jdbc-3.6.19, the natively compiled SQLite engines will be used for the following operating systems:
- Windows XP, Vista (Windows, x86 architecture, x86_64)
- Mac OS X 10.4 (Tiger), 10.5(Leopard), 10.6 SnowLeopard (for i386, x86_64, Intel CPU machines)
- Linux i386 (Intel), amd64 (64-bit X86 Intel processor)
In the other OSs not listed above, the pure-java SQLite is used. (Applies to versions before 3.7.15)
If you want to use the native library for your OS, [build the source from scratch.编译很麻烦,且跨平台性不好,到另一平台需要继续重新编译
3、JDBC 连接 使用sqlite-jdbc-3.7.2.jar操作数据库报错:java.sql.SQLException: out of memory,解决方案参考接下来的详细描述。 java sqlite out of memory异常
今天用sqlite写点东西eclips给我了这个东西
out of memory
java.sql.SQLException: out of memory
at org.sqlite.DB.throwex(DB.java:252)
at org.sqlite.NestedDB.open(NestedDB.java:47)
at org.sqlite.Conn.<init>(Conn.java:36)
at org.sqlite.JDBC.connect(JDBC.java:38)
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at com.loveoop.sqlite.Test.main(Test.java:19)
原因:目录结构中存在中文,
解决方案:把中文修改为英文~~~~。
Good luck!!