java.sql.SQLException: No suitable driver found for jdbc:oracle:thin:@localhost:1521:ORCL

问题描述:

  在使用Hibernate连接Oracle数据库时,所有配置都检查了好几遍,但还是一直报这个错误

Caused by: java.sql.SQLException: No suitable driver found for jdbc:oracle:thin:@localhost:1521:ORCL
项目环境:

 数据库:Oracle11G

JDK: 1.7



解决方案:


这是因为Orcale的驱动与jdk版本之间不支持的问题
oracle7支持jdk1.7

oracle6针对1.6
oracle14只支持1.5,这样子的。


只需要把build path中使用的oracle驱动更换掉就可以了

你可能感兴趣的:(Hibernate,Oracle)