Hello, recently y introduced with the Jboss tools for hibernate, in this moment i require a reverse engineer for a Oracle 10g express database, but when i configure the console for this database does not trhow me a any table from the db schema...
i dont now , what happend with this DB becasue when i tested with a MySQL db y can see the tables and generate de reveng file
My config file
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="portal_config">
<property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="hibernate.connection.password">123456</property>
<property name="hibernate.connection.url">jdbc:oracle:thin:@localhost:1521:xe</property>
<property name="hibernate.connection.username">usrportallr</property>
<property name="hibernate.default_schema">usrportallr</property>
<property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</property>
</session-factory>
</hibernate-configuration>