I am using Hibernates without any IDE. I doing on notepad++ text editor. I follow all the steps and worked fine. I set all the jars as classpath. i set classpath foe ojdbc14.jar for my jdk 1.8.0_15. When i run my java file hibernates gives the below error.
No suitable driver found for jdbc:oracle:thin:@localhost:1521:xe
I use the below line in hibernate.cfg.xml
<session-factory>
..
...
<property name="connection.url">jdbc:oracle:thin:@localhost:1521:xe</property>
..
..
</session-factory>
help me to how to resolve this no suitable driver found?
Thanks in advance.