I read that Hibernate can manually try to find appropriate dialect for a given database, but it is limited to the built-in dialects I think (because when I don’t specify dialect for my sqllite database I am getting exceptions).
Is there a way to add to hibernate other dialects as classes that are part of someone project, so he could make use of them for dialect loop-up?
EDIT:
I am using 3.6.0.Final version of Hibernate.
There sure is. You have to supply a custom DialectResolver. You do that using the
hibernate.dialect_resolverssetting which names a comma-separated list of DialectResolver implementations.