Hello,
I'm trying to configure Hibernate to use a WAS 5 datasource with Oracle.
I know that it is maybe a WebSphere question, but can anyone help me?
My datasource name is "jdbc/oradevel" and my configuration file:
Code:
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">
<hibernate-configuration>
<session-factory >
<property name="dialect">net.sf.hibernate.dialect.OracleDialect</property>
<property name="connection.datasource">jdbc/oradevel</property>
...
thanks.