Hi puma123,
Quote:
Dialect class not found: org.hibernate.dialect.HSQLDialect hibernate.connection.driver_class=org.hsqldb.jdbcDriver
Instead to search for class "org.hibernate.dialect.HSQLDialect"
hibernate searches for class
"org.hibernate.dialect.HSQLDialect hibernate.connection.driver_class=org.hsqldb.jdbcDriver"
which obvious doesn't correspond to a class.
This means that in your configuration file the value for the dialect "org.hibernate.dialect.HSQLDialect"
isn't clearly delimited so hibernate takes, consider also as value that what is following immediately after,
which is "hibernate.connection.driver_class=org.hsqldb.jdbcDriver".
Therefore there must be an error in the syntax.
How is the name of your hibernate configuration file?
(If it has suffix .xml then your current syntax is wrong)