You have it set in the hibernate.cfg.xml? Well, I suppose hibernate it's not finding it because of this:
Code:
[java] 12:28:51,448 INFO Environment:478 - loaded properties from resource hibernate.properties: {hibernate.cglib.use_r
eflection_optimizer=true, hibernate.query.substitutions=true 1, false 0, yes 'Y', no 'N'}
I think it's looking for the dialect in hibernate.properties.
Try this on hibernate.properties:
Code:
hibernate.dialect org.hibernate.dialect.FirebirdDialect
Of course, put your correct dialect.
:)