在HP-UX用JAVA程序登陆ORACLE的问题
发表于:2007-07-04来源:作者:点击数:
标签:
Java:Oracle JDBC驱动程序返回错误 - 没有合适的驱动程序问题描述 当我的Java应用程序登录到Oracle 数据库 中之后,DriverManager.getconnection失败,Oracle JDBC驱动程序返回下面的错误信息: no suitable driver 为什么会出现这个问题? 配置信息 操作系
Java:Oracle JDBC驱动程序返回错误 - 没有合适的驱动程序问题描述
当我的Java应用程序登录到Oracle
数据库中之后,DriverManager.getconnection失败,Oracle JDBC驱动程序返回下面的错误信息:
no suitable driver
为什么会出现这个问题?
配置信息
操作系统 - HP-UX
版本 - 10.20
硬件系统 - HP9000
系列 - K420
应用程序 - Java c.010.07.00版和Oracle 7.3.4
解决方法
这个问题出现在Jbuilder为项目类打包时。Jbuilder为你配置应用程序,如果认为有必要,将包含所有的类。但是它无法知道动态装载的类,而驱动程序必须要使用,因此驱动程序脱离配置。
解决方法就是在类路径中包含Oracle提供的classes111.zip文件。
.........following with all English text ....
Problem Description
When my Java application logs into an Oracle database,
DriverManager.getconnection fails and the Oracle JDBC
driver returns this error message:
no suitable driver
What is causing this problem?
Configuration Info
Operating System - HP-UX
Version - 10.20
Hardware System - HP9000
Series - K420
Applications - Java version c.010.07.00 and Oracle 7.3.4
Solution
This problem o
clearcase/" target="_blank" >ccurs when JBuilder packages the classes for the project.
JBuilder deploys applications for you and includes all classes if thinks
are needed. But, it cannot know about classes that are loaded
dynamically, as the driver must be. So, the driver left out of the
deployment.
The solution is just to include in the classpath the classes111.zip
file provided by Oracle.
原文转自:http://www.ltesting.net