当前位置: 技术问答>java相关
用JDBC连接ORACLE的问题?
来源: 互联网 发布时间:2015-09-11
本文导语: try { conn=DriverManager.getConnection(URL_ONE,this.USERNAME_ONE,PASSWORD_ONE); } catch(SQLException e) { System.err.print(e.toString()); } 我使用JB7自带的Database pilot连接正常, 执行到这里出现异常: java.sql.SQL...
try {
conn=DriverManager.getConnection(URL_ONE,this.USERNAME_ONE,PASSWORD_ONE);
}
catch(SQLException e)
{
System.err.print(e.toString());
}
我使用JB7自带的Database pilot连接正常,
执行到这里出现异常:
java.sql.SQLException: Io 异常: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=150999297)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))There is not JDBC driver!
StandardWrapperValve[debugjsp]: Servlet.service() for servlet debugjsp threw exception
java.lang.NullPointerException
应该怎么做? 谢谢
conn=DriverManager.getConnection(URL_ONE,this.USERNAME_ONE,PASSWORD_ONE);
}
catch(SQLException e)
{
System.err.print(e.toString());
}
我使用JB7自带的Database pilot连接正常,
执行到这里出现异常:
java.sql.SQLException: Io 异常: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=150999297)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))There is not JDBC driver!
StandardWrapperValve[debugjsp]: Servlet.service() for servlet debugjsp threw exception
java.lang.NullPointerException
应该怎么做? 谢谢
|
使用thin的driver,否则的话,你需要一个oracle的客户端
|
把你的URL_ONE值贴出来
|
要连接数据库,首先得启动数据库服务。
|
根据错误信息看,你的程序应该没有问题,问题是ORACLE和JAVA的数据库配置上,你仔细查查看,你的ORA CLIENT是不是可以正常联上SERVER