3

I'm currently facing the problem to migrate an existing application using Spring Data JPA and Hibernate from an Oracle Database to EXASOL. This should in general not be a big problem but it seems like that it is not possible use Hibernate in combination with EXASOL.

My current application.properties file:

#db config
db.driver=com.exasol.jdbc.EXADriver
db.url=jdbc:exa:192.168.1.11..17:8563
db.username=foobar
db.password=foobar

#hibernate config
hibernate.dialect=???
hibernate.hbm2ddl.auto=validate
hibernate.ejb.naming_strategy=org.hibernate.cfg.ImprovedNamingStrategy
hibernate.show_sql=true
hibernate.format_sql=true

The question is which hibernate.dialect to use?

Aldjinn
  • 705
  • 7
  • 15

2 Answers2

1

It's possible currently to use Hibernate in combination with EXASOL. Here is the repository for the Exasol Hibernate Dialect from their github page.

gdrt
  • 3,160
  • 4
  • 37
  • 56
  • Disclaimer: Please note that this is an open source project which is not officially supported by EXASOL. We will try to help you as much as possible, but can't guarantee anything since this is not an official EXASOL product. – torina Apr 09 '18 at 14:20
0

EXASOL does have a hibernate dialect - please contact your support representative or post a request to the EXASOL community for more details

Community
  • 1
  • 1