I have the following configuration on my system.
Eclipse 3.4.2 (Build id: M20090211-1700)
Hibernate Tools 3.2.4.GA-R200905070146-H18
Database Apache Derby 10.5.1.1
Tried both JDK 1.5.0_21 & 1.6.0_16
Code:
<hibernate-configuration>
<session-factory name="sessionFactory">
<property name="hibernate.connection.driver_class">org.apache.derby.jdbc.ClientDriver</property>
<property name="hibernate.connection.password">welcome</property>
<property name="hibernate.connection.url">jdbc:derby://localhost:1527/derby</property>
<property name="hibernate.connection.username">myapp</property>
<property name="hibernate.dialect">org.hibernate.dialect.DerbyDialect</property>
</session-factory>
</hibernate-configuration>
I have also tried development and nightly build of hibernate tools with Eclipse 3.5 on different systems with the same result. I intend to try a different database tomorrow to see if it makes any difference.