1:如果数据库为db2,则你所要查找的表前面要加上这个建表的用户名, 如,testTable这张表,我是通过系统登陆的帐号所建,为lixc.testTable; 我所使用查询的用户为admin,如果你只是写select * from testTable ,则 db2只是默认的查找admin.testTable,这张表不存在,所以应该写为: select * from lixc.testTable 2: 如果你连接数据库的url和driverName都是通过设置文件*.properties来读取的 话,则要注意: 如driverManager:com.ibm.db2.jcc.DB2Driver,如果其后面更有 空格的话,可能在java运行的时候会出现,com/ibm/db2/jcc/DB2Driver这个class文件 未找到的错误。我原来遇见这个情况,如果直接在Class.forName(“driverName”).newInstance(); 测试成功,可是读取设置文件Class.forName(driverStr).newInstance();则是报以上错误。 后来将设置文件中后面的空格去掉,程式运行成功。
db2的jdbc连接用法: 1. 将 db2jcc.jar 和 db2jcc_license_cu.jar 设置在环境变量classpath下。
2. 将 db2jcc.jar 和 db2jcc_license_cu.jar复制在你所用的应用服务器中工程下的WEB-INF/lib包下
3. JDBC URL :jdbc:db2://tdurden:50000/SAMPLE ( where tdurden is the machine the DB2 database server resides on and where SAMPLE is the database instance – 50000 is the default DB2 port to connect to )
4. Driver Class field: com.ibm.db2.jcc.DB2Driver
5. Add a valid username and password in the username and password fields.
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/100521.html原文链接: