I reading the reference guide.this is my first try with hibernate tool
1)I want to delete my fist
Hibernate Console Configuration
who name is hibernateTool. I don t Know where is it create
2) What do I have to put in my hibernate.properties
this is my
hibernate.cfg
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 name="factcan">
<property name="hibernate.connection.driver_class">oracle.jdbc.OracleDriver</property>
<property name="hibernate.connection.password">factcan</property>
<property name="hibernate.connection.url">jdbc:oracle:thin:@s1ora01s:1521:s1ora01i</property>
<property name="hibernate.connection.username">factcan</property>
<property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</property>
</session-factory>
</hibernate-configuration>
Do dont understand I can t see if I can connect to de dataBase
I what to connect to my dataBase to see my table and generate my hbm et pojo. Like I do with hibernateSynchronizer thank you.
and why it ask me for a hibernate.properties
if I have a hibernate.cfg already