SIau_Tie wrote:
talha06 wrote:
same problem for me.. need help..
please post your hibernate configuration?
what library do you use?
thank you for your interest. Here's my configuration code :
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="hibernate.connection.password">00</property>
<property name="hibernate.connection.url">jdbc:oracle:thin:@localhost:1521:xe</property>
<property name="hibernate.connection.username">talha</property>
<property name="hibernate.default_catalog">TALHA</property>
<property name="hibernate.default_schema">TALHA</property>
<property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</property>
<property name="show_sql">true</property>
<mapping resource="model/Kisi.hbm.xml"/>
</session-factory>
</hibernate-configuration>
I'm using many libraries including
Hibernate-Core-3.5-0, commons-logging, persistence, etc.