标签:lips ima 下载 round white app c++ nested follow
摘自http://blog.sina.com.cn/s/blog_654337ca01016x4n.html
源代码下载地址
第一步:加载驱动(作用是把需要的驱动程序加入内存)
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的升级。
摘自http://blog.csdn.net/u011502222/article/details/44234103 (文章标题为java.lang.ClassNotFoundException: sun.jdbc.odbc.JdbcOdbcDriver解决方法! )
JDK7 和 JDK8 貌似都不支持 JDBC-ODBC 桥连,所以最好下个版本 6
摘自 http://wenku.baidu.com/link?url=Tz8acJQlGCGQgejp7D4DJ0o_54AcohTmGm2c47Cy7X3y1nrLwyIap4pIuHnaVB_01WlFlTQ12NoHKidcwmNLYvKasEEhgqgI-WjVOg1C0xK (文章标题为JDBC-ODBC桥连access教程)
http://www.java2s.com/Code/Jar/s/Downloadsqlitejdbc372jar.htm本项目的sqlite-jdbc-3.7.2.jar是从此链接下载的,因为下边的链接资源不畅通。
https://bitbucket.org/xerial/sqlite-jdbc/downloads?tab=tags
摘自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:
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.编译很麻烦,且跨平台性不好,到另一平台需要继续重新编译
摘自http://www.cnblogs.com/cnryb/archive/2012/06/13/2548445.html
今天用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!!
标签:lips ima 下载 round white app c++ nested follow
原文地址:http://www.cnblogs.com/LiuYanYGZ/p/6183849.html