Hello, it's me again testing hibernate tools, now I was trying to test Hibernate tools with an embedded database Firebird, before I tested Hibernate tools with a Firebird database (client-server) and it works just fine, but with an embedded driver a had a lot of problems. My hibernate.cgf.xml is in this way:
<hibernate-configuration>
<session-factory>
<property name="hibernate.bytecode.use_reflection_optimizer">false</property>
<property name="hibernate.connection.driver_class">org.firebirdsql.jdbc.FBDriver</property>
<property name="hibernate.connection.password">masterkey</property>
<property name="hibernate.connection.url">jdbc:firebirdsql:embedded:C:/firebirdDB/DB1.gdb</property>
<property name="hibernate.connection.username">SYSDBA</property>
<property name="hibernate.dialect">org.hibernate.dialect.FirebirdDialect</property>
</session-factory>
</hibernate-configuration>
When I tried through my hibernate console to make a hibernate code generation, I get this error:
Error to initialize the application because it did not find icuuc30.dll it's a javaw.exe error..................
Help me please I am desperated...........Thanks
|