Not sure its the same problem to be honest.
Just tried yet another fresh install of Eclipse 3.1 M4 plus Hibernate Tools 3.0 Alpha. Can generate hibernate.cfg.xml, can also create the console configuration. I added the schema name property to hibernate.cfg.xml (as i though that might help) and tweaked the Eclipse mem startup args (as I thought that might help also) but still encountering the exact same problem. I'd like to see whats happening in the console but Eclipse locks up and thus i have to terminate via Windows Crash Manager.
Here's my config,xml:
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.username">db2admin</property>
<property name="hibernate.connection.password">db2admin</property>
<property name="hibernate.dialect">org.hibernate.dialect.DB2Dialect</property>
<property name="hibernate.connection.url">jdbc:db2://db2server:50000/DEVEL</property>
<property name="hibernate.connection.driver_class">com.ibm.db2.jcc.DB2Driver</property>
<property name="hibernate.default_schema">MySchema</property>
</session-factory>
</hibernate-configuration>
I notice some of the posts are being answered but not mine unfortunately, go on lads...give me a clue at least ;-P
Cheers, shaun.
|