eclipse IDE : Release 3.2.1
Hibernate : Release 3.2
HSQLDB : version 1.8.0.7
Since i am new to the hibernate tools, i read the hibernate tools overview and even seen the demo located at :
http://www.hibernate.org/hib_docs/tools ... t_swf.html
However, i just can't get the hibernate code generation tool to work inside my eclipse IDE. Below is my hibernate.cfg.xml file details :
<?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.bytecode.use_reflection_optimizer">false</property>
<property name="hibernate.connection.driver_class">org.hsqldb.jdbcDriver</property>
<property name="hibernate.connection.url">jdbc:hsqldb:db/revenge</property>
<property name="hibernate.connection.username">sa</property>
<property name="hibernate.dialect">org.hibernate.dialect.HSQLDialect</property>
</session-factory>
</hibernate-configuration>
Do i need to start HSQLDB first? I was thinking of using an in memory DB with all the details in the db.script file. No idea how to proceed. I am lost in the concept behind HSQLDB and Hibernate. Any1 can point me in the right direction?